5

我正在为我的 Android 手机构建一个小应用程序,以使用非常基本的 REST 接口将文本消息转发到网络服务器。

我正在使用 android 4.0.3 SDK。我使用 Django 和 Django restframework 包在 python 中开发了 web 服务。设置完全开箱即用。基本上有一个端点接收包含消息信息(发件人、正文、日期)的 JSON 对象的 POST。我已经通过以下命令使用 cURL 测试了该服务:

curl -X POST -H 'Content-Type: application/json' --data '{"sender":"+xxxxxxxx", "body": "test", "send_date":"2011-03-20 16:32:02"}' http://[...]/messages.json

这一切都很好,我得到了预期的回应:

{"body": "test", "send_date": "2011-03-20T16:32:02", "id": 25, "sender": "+xxxxxxxxxx"}

现在我设置了android应用程序。它是一个简单的 BroadcastReceiver 子类,包含一个私有 AsyncTask 类:

private class httpPost extends AsyncTask<String, Void, JSONObject> {
    protected JSONObject doInBackground(String... args) {
        // Create a new HttpClient and Post Header
        HttpClient httpclient = new DefaultHttpClient();
        HttpParams myParams = new BasicHttpParams();
        HttpConnectionParams.setConnectionTimeout(myParams, 10000);
        HttpConnectionParams.setSoTimeout(myParams, 10000);

        String url = args[0];
        String json=args[1];            
        JSONObject JSONResponse = null;
        InputStream contentStream = null;
        String resultString = "";

        try {
            HttpPost httppost = new HttpPost(url);
            httppost.setHeader("Content-Type", "application/json");
            httppost.setHeader("Accept", "application/json");

            StringEntity se = new StringEntity(json); 
            se.setContentEncoding(new BasicHeader(HTTP.CONTENT_TYPE, "application/json"));
            httppost.setEntity(se);

            for (int i=0;i<httppost.getAllHeaders().length;i++) {
                Log.v("set header", httppost.getAllHeaders()[i].getValue());
            }

            HttpResponse response = httpclient.execute(httppost);

            // Do some checks to make sure that the request was processed properly
            Header[] headers = response.getAllHeaders();
            HttpEntity entity = response.getEntity();
            contentStream = entity.getContent();

        } catch (ClientProtocolException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        }

        //convert response to string
        try{
            BufferedReader reader = new BufferedReader(new InputStreamReader(contentStream,"iso-8859-1"),8);
            StringBuilder sb = new StringBuilder();
            String line;
            while ((line = reader.readLine()) != null) {
                sb.append(line + "\n");
            }
            contentStream.close();
            resultString = sb.toString();
        }catch(Exception e){
            e.printStackTrace();
        }

        Log.v("log", resultString);
        return new JSONObject();
    }


}

如您所见,我刚刚开始熟悉 Java 和 android SDK,所以请多多包涵。这个设置实际上在我构建的另一个应用程序中运行良好,用于将 JSON 字符串发送到 Neo4J Web 服务。

问题是,当我通过 Android 将消息发布到我的网络服务时,内容类型有时会从“应用程序/json”更改为“应用程序/json,应用程序/json”。标头循环中的日志条目仍会为每个标头输出正确的值,但是,Web 服务会返回以下错误消息:

{"error": "Unsupported media type in request 'application/json, application/json'."}

我很困惑,欢迎任何帮助。

4

2 回答 2

7

改变这个:

StringEntity se = new StringEntity(json); 
se.setContentEncoding(new BasicHeader(HTTP.CONTENT_TYPE, "application/json"));
httppost.setEntity(se);

仅限于此:

httppost.setEntity(new StringEntity(json.toString(), HTTP.UTF_8));
于 2012-04-21T23:33:16.320 回答
2

简单的 :

import org.apache.http.client.methods.HttpPost;

httppost.setEntity(new StringEntity(json.toString(), org.apache.http.entity.ContentType.APPLICATION_JSON));
于 2019-06-03T10:52:38.310 回答