表单method方式为post或get中文乱码的解决方法

表单method方式为post中文乱码解决方法

■设置请求和响应的编码方式

request.setCharacterEncoding("utf-8");
response.setCharacterEncoding("utf-8");

表单method方式为get中文乱码解决方法

■治标的方法:

new String(s.getBytes("iso-8859-1"),"utf-8");

■治本的方法:

配置tomcat\conf\server.xml 文件

<Connector connectionTimeout="20000"  port="8080"  protocol="HTTP/1.1"  redirectPort="8443"  URIEncoding="UTF-8"/>

125jz网原创文章。发布者:江山如画,转载请注明出处:http://www.125jz.com/4567.html

(0)
江山如画的头像江山如画管理团队
上一篇 2019年12月11日 下午8:29
下一篇 2019年12月27日 上午8:35

99%的人还看了以下文章

发表回复

登录后才能评论