首页 > 学院 > 开发设计 > 正文

SSM框架——SpringMVC中使用@ResponseBody注解返回值,Ajax取得中文乱码解决方法

2019-11-10 20:02:52
字体:
来源:转载
供稿:网友
SPRing使用AnnotationMethodHandlerAdapter的handleResponseBody方法, AnnotationMethodHandlerAdapter使用request header中"Accept"的值和messageConverter支持的MediaType进行匹配,然后会用"Accept"的第一个值写入 response的"Content-Type"。一般的请求都是通过浏览器进行的,request header中"Accept"的值由浏览器生成。  

有人跟踪@ResponseBody 的实现类发现其默认的编码是 iso-8859-1,所以显然Ajax接受服务器端返回的中文必然是乱码。

下面提供2中解决方法:

方法一

我遇到这个问题的时候,查阅了一下资料,采用了一个比较简单的方法来解决这个问题,就是需要服务器返回中文的时候不使用这个注解,而是直接用HttpServletResponse的对象来完成传输,在服务器端可以通过response.setContentType("text/plain;charset=UTF-8");来设定编码类型,这样就不会出现中文乱码了。

服务器端核心代码如下:

[java] view plain copy print?@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");           htmlresponse.setContentType("text/plain; charset=utf-8");          文本response.setContentType("application/json; charset=utf-8");    数据response.setContentType("application/xml; charset=utf-8");      xml

方法二

2014-07-11

今天再次查找了一下这个问题,有了一个更好的解决方法,使用spring的BeanPostProcessor接口实现,在自己的工程中新建一个类,如下:

[java] view plain copy print?package springmvc.extention;    import java.nio.charset.Charset;  import java.util.ArrayList;  import java.util.List;    import org.springframework.beans.BeansException;  import org.springframework.beans.factory.config.BeanPostProcessor;  import org.springframework.http.MediaType;  import org.springframework.http.converter.StringHttpMessageConverter;    /**   * 解决spring MVC3 中@ResponseBody的中文乱码问题   */    public class UTF8StringBeanPostProcessor implements BeanPostProcessor {        @Override        public Object postProcessAfterInitialization(Object bean, String beanName) throws BeansException {            if (bean instanceof StringHttpMessageConverter) {                MediaType mediaType = new MediaType("text", "plain", Charset.forName("UTF-8"));                List<MediaType> types = new ArrayList<MediaType>();                types.add(mediaType);                ((StringHttpMessageConverter) bean).setSupportedMediaTypes(types);            }            return bean;        }            @Override        public Object postProcessBeforeInitialization(Object bean, String beanName) throws BeansException {            return bean;        }    }  然后在自己的Spring配置文件中注册这个bean就可以了,再试试自己的程序,发现问题解决了。

[html] view plain copy print?<!-- 解决使用@ResponseBody 的中文乱码。 -->      <bean class="springmvc.extention.UTF8StringBeanPostProcessor"></bean>  

(原文地址:http://blog.csdn.NET/zhshulin)


上一篇:Leetcode 198. House Robber

下一篇:文章标题

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表