1

我试图使用android httpclient(loopj)发布一些数据。我在其正文中添加了一些json数据并设置了请求标头。但它显示AsyncHttpClient:传递的contentType将被忽略,因为HttpEntity设置了内容类型。有谁知道如何解决这个问题?

 public static void post(Activity context,String url, RequestParams params, AsyncHttpResponseHandler responseHandler) {
        try {
            JSONObject jsonParams = new JSONObject();
            JSONObject innerObject = new JSONObject();
            innerObject.put("Name", "@MODE");
            innerObject.put("ParamType", "8");
            innerObject.put("Value", "0");
            JSONArray ar = new JSONArray();
            ar.put(innerObject);
            try {
                jsonParams.put("ProcName", "Core.MENUS_SPR");
                jsonParams.put("dbparams", ar);

               Log.i("jsonParams.toString()",""+jsonParams.toString());

                StringEntity se = null;
                try {
                    se = new StringEntity(jsonParams.toString());


                } catch (UnsupportedEncodingException e) {
                    e.printStackTrace();
                    return;
                }
                   client.post(context, (url), se, "application/json", responseHandler);


            } catch (JSONException e) {
                e.printStackTrace();
            }

      } catch (Exception e) {
            e.printStackTrace();
        }

    }
4

1 回答 1

6

在发布之前写下它,然后它会起作用。

se.setContentType(new BasicHeader(HTTP.CONTENT_TYPE, "application/json"));

原因一旦您使用某个实体,它将忽略帖子中给出的内容类型并使用实体的内容。因此,以上行将解决您的问题。


我深入研究了源代码,发现您传入的内容类型post(..)将被忽略,如果它存在,那么您将在日志中出现此错误。

传递的 contentType 将被忽略,因为 HttpEntity 设置了内容类型

但是不要担心,一旦您为实体提供内容类型,它就会起作用。要消除此错误,您可以post(..)改为在内容类型中传递 null。

来自AsyncHttpClient.java的一些代码:

if (contentType != null) {
            if (uriRequest instanceof HttpEntityEnclosingRequestBase && ((HttpEntityEnclosingRequestBase) uriRequest).getEntity() != null) {
                Log.w(LOG_TAG, "Passed contentType will be ignored because HttpEntity sets content type");
            } else {
                uriRequest.setHeader(HEADER_CONTENT_TYPE, contentType);
            }
        }
于 2014-11-10T11:03:06.303 回答