在使用httpclient發送post請求的時候,接收端中文亂碼問題解決。json
正文:服務器
咱們都知道,通常狀況下使用post請求是不會出現中文亂碼的。但是在使用httpclient發送post請求報文含中文的時候在發送端數據正常可是到了服務器端就中文亂碼了。app
解決辦法:post
發送端進行設置編碼以下:編碼
主要代碼:blog
if (null != jsonParam) {utf-8
//解決中文問題。get
method.addHeader("Content-type","application/json; charset=utf-8");it
method.setHeader("Accept", "application/json");io
method.setEntity(new StringEntity(jsonParam.toString(), Charset.forName("UTF-8")));
}
HttpResponse result = httpClient.execute(method);
在接收(服務器)端:
主要代碼:
@RequestMapping(value = "getJson")
@ResponseBody
public Map<String,Object> getJson(@RequestBody String requestBody, HttpServletRequest request){
requestBody = new String(requestBody.getBytes(), Charset.forName("utf-8"));
JSONObject jsonObject = JSONObject.parseObject(requestBody);
System.out.println(jsonObject);
ResultJsonInfo info = JSONObject.parseObject(jsonObject.toJSONString(), ResultJsonInfo.class);
System.out.println(info);
//TODO 處理本身業務
JSONObject result= new JSONObject();
result.put("success", "true");
Map<String, Object> resultMap = new HashMap<String, Object>();
resultMap.put("isok", true);
return resultMap;
}
這樣處理以後。再次請求。亂碼問題解決。