HTTP接口传json数据中文乱码问题

http连接controller测试传json数据

  JSONObject json = new JSONObject();
  ...
  ...
  StringEntity s = new StringEntity(json.toString());
  //设置编码方式
   s.setContentEncoding("utf-8");
   //设置发送数据格式
   s.setContentType("application/json");
   post.setEntity(s);
    HttpResponse response = ch.execute(post);

controller接口接收后打印数据中文显示??,百度后方法是设置接收端的编码格式,结果改了配置文件,加了注解设置为utf-8编码格式还是没效果,这里附上整理全的链接:https://blog.csdn.net/wangshuang1631/article/details/70753801

最终发现是StringEntity格式问题,改为 StringEntity s = new StringEntity(json.toString(),“utf-8”);中文乱码解决

你可能感兴趣的:(懒癌发作)