使用JSON发布外来字符会产生400

时间:2014-07-15 15:48:23

标签: java android json rest

我正在尝试使用带有外来字符的JSON发出POST请求,例如西班牙语n上面带有“〜”,但我不断收到此请求和响应错误:

POST ...
Accept: application/json
Content-Type: application/json; charset=UTF-8
Content-Length: 151
Content-Encoding: UTF-8
Host: ...
Connection: Keep-Alive
User-Agent: ..

{"numbers":"2","date":"2014-07-15T00:00:00+0000","description":" // this never gets closed

X-Powered-By: ...
Set-Cookie: ...
Cache-Control: ...
Date: Tue, 15 Jul 2014 15:19:12 GMT
Content-Type: application/json
Allow: GET, POST

{"status":"error",
"status_code":400,
"status_text":"Bad Request",
"current_content":"",
"message":"Could not decode JSON, malformed UTF-8 characters (incorrectly encoded?)"}

我已经可以使用普通的ASCII字符成功发出POST请求,但是现在我支持外语,我需要将外来字符转换为UTF-8(或者正确的编码最终都是),除非有这是一个更好的方法。

这是我的代码:

JSONObject jsonObject = new JSONObject();
HttpResponse resp = null;
String urlrest = // some url;
HttpPost p = new HttpPost(urlrest);
HttpClient hc = new DefaultHttpClient();
hc = sslClient(hc);

try
{
   p.setHeader("Accept", "application/json");
   p.setHeader("Content-Type", "application/json");

   // setting TimeZone stuff

   jsonObject.put("date", date);
   jsonObject.put("description", description);
   jsonObject.put("numbers", numbers);

   String seStr = jsonObject.toString();
   StringEntity se = new StringEntity(seStr);
   // Answer: The above line becomes new StringEntity(seStr, "UTF-8");

   Header encoding = se.getContentType();
   se.setContentEncoding("UTF-8");
   se.setContentType("application/json");
   p.setEntity(se);
   resp = hc.execute(p);

当我提交断点并在提交之前查看se时,字符看起来是正确的。

更新:代码已更新,并在上面回复了几行,并附有识别它的注释。

1 个答案:

答案 0 :(得分:2)

new StringEntity构造函数采用" UTF-8"参数。