[转自:http://www.cnblogs.com/yimian/p/7017480.html]
doget方式 由于传输数据不是在实体内容中 ,解码 需要使用手动 解码!
/**
* 手动重新解码(iso-8859-1 字符串-> utf-8 字符串)
*/
/*if("GET".equals(request.getMethod())){
name = new String(name.getBytes("iso-8859-1"),"utf-8");
}*/
String password = request.getParameter("password");
/*if("GET".equals(request.getMethod())){
password = new String(password.getBytes("iso-8859-1"),"utf-8");
}*/
dopost方式 :
request.setCharacterEncoding(“utf-8”);
不推荐方式: 直接改 tomcat服务器配置文件 ,这样无须改代码
tomcat目录下——– conf ———– server.xml