标签:位置 utf-8 port tomcat response res name nec har
中文乱码
tomcat目录server.xml
connector port="8080" 位置
添加一条 useBodyEncodingForURI="true" //使用页面设置的编码
request.setCharacterEncoding("utf-8");//设置编码格式
response.setCharacterEncoding("utf-8");
String str=new String(name.getbytes("ISO-8859-1"),"utf-8");//针对单个变量转码
或者
添加一条 URIEncoding="UTF-8" 还是要打一遍request的设置编码
page里改了编码格式的话就不用设置response
标签:位置 utf-8 port tomcat response res name nec har
原文地址:http://www.cnblogs.com/m97i/p/6917367.html