发送 json 内容时如何创建上下文?

How to create context when sending json content?

正在阅读这个问题: 为了 post json 上下文值设置在哪里?

已接受的答案使用上下文值作为 post 方法调用中的参数:

JSONObject jsonParams = new JSONObject();
jsonParams.put("notes", "Test api support");
StringEntity entity = new StringEntity(jsonParams.toString());
client.post(context, restApiUrl, entity, "application/json",
    responseHandler);

上下文设置在哪里?以前我使用 RequestParams 发送不需要上下文但发送 json 数据时需要上下文值的数据?

也许这个问题应该被删除,但可以使用 Context context = this.getApplicationContext();

从主 activity 请求上下文