一、post请求方式的乱码
在web.xml中加入:
<filter>
<filter-name>CharacterEncodingFilter</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>
</filter>
<filter-mapping>
<filter-name>CharacterEncodingFilter</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
二、get请求方式的乱码
修改tomcat配置文件添加编码与工程编码一致,如下:
这个文件是tomcat的config文件夹中的server.xml进行继续
<Connector URIEncoding="utf-8" connectionTimeout="20000" port="8080" protocol="HTTP/1.1" redirectPort="8443"/>- 1
另外一种方法对参数进行重新编码:
String userName new = String(request.getParamter("userName").getBytes("ISO8859-1"),"utf-8")- 1
ISO8859-1是tomcat默认编码,需要将tomcat编码后的内容按utf-8编码
本文介绍了如何解决Web应用中GET和POST请求出现的乱码问题。对于POST请求,可以通过在web.xml中配置CharacterEncodingFilter来统一字符编码;而对于GET请求,则可通过修改Tomcat的server.xml文件或在接收参数时进行编码转换来解决。
613

被折叠的 条评论
为什么被折叠?



