其他分享
首页 > 其他分享> > HTTP 浏览器发送给服务器的数据编码问题

HTTP 浏览器发送给服务器的数据编码问题

作者:互联网

[转自: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

标签:数据编码,HTTP,String,request,发送给,8859,iso,utf,password
来源: https://blog.51cto.com/u_12784254/2875140