Fork me on GitHub

SpringMVC———乱码问题

SpringMVC———乱码问题

在SpringMVC框架下,解决中文提交乱码的问题,首先要保证页面设定的form的字符编码是UTF-8格式

Post乱码:在web.xml文件中插入以下代码(它的位置必须是第一个执行的过滤器,否则可能不会生效)

1
2
3
4
5
6
7
8
9
10
11
12
<filter>
<filter-name>charsetFilter</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>

Get乱码:对于get请求中文参数出现乱码解决方法有两个:

(1)、就tomcat举例,修改tomcat配置文件添加编码与工程编码一致,如下:

(2)、另外一种方法对参数进行重新编码:
String userName new String(request.getParamter(“userName”).getBytes(“ISO8859-1”),”utf-8”)
ISO8859-1是tomcat默认编码,需要将tomcat编码后的内容按utf-8编码