表单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