Spring使用AnnotationMethodHandlerAdapter的handleResponseBody方法, AnnotationMethodHandlerAdapter使用request
header中"Accept"的值和messageConverter支持的MediaType进行匹配,然后会用"Accept"的第一个值写入 response的"Content-Type"。一般的请求都是通过浏览器进行的,request header中"Accept"的值由浏览器生成。
有人跟踪@ResponseBody 的实现类发现其默认的编码是 iso-8859-1,所以显然ajax接受服务器端返回的中文必然是乱码。
我遇到这个问题的时候,查阅了一下资料,采用了一个比较简单的方法来解决这个问题,就是需要服务器返回中文的时候不使用这个注解,而是直接用HttpServletResponse的对象来完成传输,在服务器端可以通过response.setContentType("text/plain;charset=UTF-8");来设定编码类型,这样就不会出现中文乱码了。
服务器端核心代码如下:
@RequestMapping(value = "test", method = RequestMethod.POST) public void test(HttpServletRequest request, HttpServletResponse response) { String result = null; //取得客户端传来的值 String userName = request.getParameter("userName"); //向客户端返回一句话 result = "您好!"; PrintWriter out = null; response.setContentType("text/plain;charset=UTF-8"); try { out = response.getWriter(); out.write(result.toString()); } catch (IOException e) { e.printStackTrace(); } finally { out.close(); } }
返回值时根据自己的数据类型进行设置,常用的有:
response.setContentType("text/html; charset=utf-8"); html
response.setContentType("text/plain;
charset=utf-8"); 文本
response.setContentType("application/json;
charset=utf-8"); 数据
response.setContentType("application/xml;
charset=utf-8"); xml
(原文地址:http://blog.csdn.net/zhshulin)
SpringMVC中使用@ResponseBody注解返回值,Ajax取得中文乱码解决方法,布布扣,bubuko.com