最近在写项目的时候,使用springMVC Get方式获取值出现乱码,困扰我了很久。
网上说的方式很多,我也去试了试
第一种
通过改变request的编码格式去解决乱码
request.setCharacterEncoding("UTF-8");
结果试了下完全没用,这似乎对POST方式起作用
第二种
通过web.xml配置编码
<filter>
<filter-name>CharacterEncoding</filter-name>
<filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class>
<init-param>
<param-name>encoding</param-name>
<param-value>UTF-8</param-value>
</init-param>
<init-param>
<param-name>forceEncoding</param-name>
<param-value>true</param-value>
</init-param>
</filter>
<filter-mapping>
<filter-name>CharacterEncoding</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
这也没用,只过滤POST方法
第三种
catetype=new String(request.getParameter("cate").getBytes("iso-8859-1"), "utf-8");
在获取值时直接转换,这方法可行了。但是可移植性太差,在另一个tomcat上面跑,它的编码可能是GBK格式的意味着你得手动去更改很麻烦。我就遇到这个问题,把项目发布到服务器上去,就因为这个导致有些功能使用不了。
第四种
最后一种方式就是稳定版本了
首先造成这个问题的实质原因是Tomcat对get 和post的处理方式是不同的。而get方式修改编码最稳妥的是直接改变tomcat 的server.xml 配置文件
<Connector connectionTimeout="20000" port="8080" protocol="HTTP/1.1" redirectPort="8443"/>
改为:
<Connector connectionTimeout="20000" port="8080" protocol="HTTP/1.1"
redirectPort="8443" useBodyEncodingForURI="true" URIEncoding="UTF-8" />
针对一般的get请求 useBodyEncodingForURI="true" 已经足够了,但是针对Ajax get请求必须加上URIEncoding="UTF-8"
参考链接:https://blog.csdn.net/long690276759/article/details/72877356