在post请求当中我们是直接处理即可:
public void doPost(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
//响应乱码的处理
response.setContentType("text/html;charset=utf-8");
//请求乱码的处理
request.setCharacterEncoding("utf-8");}
在get请求当中我们需要先进行解码到二进制再进行编码
public void doGet(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
//请求乱码的处理
String name=request.getParameter("name");
name=new String(name.getbytes("iso-8859-1"),"utf-8");
//响应乱码的处理
response.setContentType("text/html;charset=utf-8");
}
为什么post和get处理请求乱码的方式不一样:
tomcat默认是使用iso-8859-1来处理参数。
因为在dopost中我们可以使用
request.setcharacterEncoding("utf-8")对请求参数编码,而不是默认的iso-8859-1,而在doget中却不能直接使用setcharacterEncoding()方法,
在这里我们提供有两种方法来处理请求的乱码问题
(1)修改tomcat中config下的server.xml中的
<Connector port="8080" protocol="HTTP/1.1"
connectionTimeout="20000"
redirectPort="8443" />
在最后加上编码方式URIEncoding="utf-8"即可。
但是这种方法一般很少使用,因为你需要修改客户服务器上的tomcat文件
(2)就是上面介绍的先解码在编码
//转化为二进制
byte [] b=name.getBytes("iso-8859-1");
//编码
name=new String(b,"utf-8");
响应的乱码处理都是使用response.setcontextType("text/html;charset=utf-8");他表示设置了响应头,而且设置了编码的方式,(告诉浏览器使用utf-8的编码)。这种形式是简写,完整的代码如下:
response.setHead("contextType","text/html;charset=utf-8");
总结一句话就是发送端和接受端的编码方式必须一样。