博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Servlet乱码问题解决
阅读量:5088 次
发布时间:2019-06-13

本文共 6291 字,大约阅读时间需要 20 分钟。

对于请求参数的编码处理基本上分为get和post两种情况。

1、POST

index.html

    
HTML范例
姓名:

如果客户端没有在Content-Type标头中设置字符编码信息,此时使用HttpServletRequest的getCharacterEncoding返回值是null。

在这个情况下,容器若使用默认的编码ISO-8859-1,而客户端使用UTF-8发送非ASCII字符的请求,Servlet直接使用getParameter等方法

取得请求参数值,就会是不正确的结果也就是乱码。

解决办法:

在取得请求参数前添加:

request.setCharacterEncoding("UTF-8");

String name = request.getParameter("name");

@Override    protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {        response.setContentType("text/html;charset=utf-8");        PrintWriter out = response.getWriter();        out.println("");        out.println("");        out.println("post");        out.println("");        out.println("");        //取得请求参数        request.setCharacterEncoding("UTF-8");        String name = request.getParameter("name");        //输出字符编码信息        out.println(request.getCharacterEncoding());        out.println("");        out.println("

您的姓名是:" + name + "

"); out.println(""); out.close(); }

2、GET

index.html

    
HTML范例
姓名:

利用request.setCharacterEncoding("UTF-8");来设置Tomcat接收请求的编码格式,只对POST方式提交的数据有效,对GET方式提交的数据无效!

要设置GET的编码,可以修改server.xml文件中,相应的端口的Connector的属性:URIEncoding="UTF-8",这样,GET方式提交的数据才会被正确解码。
<Connector port="8080" protocol="HTTP/1.1" connectionTimeout="20000"  redirectPort="8443"
URIEncoding="UTF-8"/>

@Override    protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {        //设置响应内容格式        response.setContentType("text/html;charset=utf-8");        //取得输出对象        PrintWriter out = response.getWriter();        out.println("");        out.println("");        out.println("get");        out.println("");        out.println("");        //取得请求参数        //request.setCharacterEncoding("UTF-8");        String name = request.getParameter("name");        out.println("");        out.println("

您的姓名是:" + name + "

"); out.println(""); out.close(); }
或者

<Connector port="8080" protocol="HTTP/1.1"

               connectionTimeout="20000"
               redirectPort="8443" 
  useBodyEncodingForURI="true"
/>

@Override    protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {        //设置响应内容格式        response.setContentType("text/html;charset=utf-8");        //取得输出对象        PrintWriter out = response.getWriter();        out.println("");        out.println("");        out.println("get");        out.println("");        out.println("");        //取得请求参数        request.setCharacterEncoding("UTF-8");        String name = request.getParameter("name");        out.println("");        out.println("

您的姓名是:" + name + "

"); out.println(""); out.close(); }

又或者(不用去修改server.xml):

String name = request.getParameter("name");name = new String(name.getBytes("ISO-8859-1"), "UTF-8");

完整测试用例:

import javax.servlet.ServletException;import javax.servlet.annotation.WebServlet;import javax.servlet.http.HttpServlet;import javax.servlet.http.HttpServletRequest;import javax.servlet.http.HttpServletResponse;import java.io.IOException;import java.io.PrintWriter;/** * Created by N3verL4nd on 2017/1/4. */@WebServlet("/hello.do")public class HelloServlet extends HttpServlet {    @Override    protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {        response.setContentType("text/html;charset=utf-8");        PrintWriter out = response.getWriter();        out.println("");        out.println("");        out.println("post");        out.println("");        out.println("");        //取得请求参数        request.setCharacterEncoding("UTF-8");        String usr = request.getParameter("usr");        String psd = request.getParameter("psd");        //输出字符编码信息        //out.println(request.getCharacterEncoding());        out.println("

账号:" + usr + "
密码:" + psd + "

"); out.println(""); out.println(""); out.close(); } @Override protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { //设置响应内容格式 response.setContentType("text/html;charset=utf-8"); //取得输出对象 PrintWriter out = response.getWriter(); out.println(""); out.println(""); out.println("get"); out.println(""); out.println(""); //取得请求参数 request.setCharacterEncoding("UTF-8"); String usr = request.getParameter("usr"); String psd = request.getParameter("psd"); usr = new String(usr.getBytes("ISO-8859-1"), "UTF-8"); psd = new String(psd.getBytes("ISO-8859-1"), "UTF-8"); out.println("

账号:" + usr + "
密码:" + psd + "

"); out.println(""); out.println(""); out.close(); }}
request.setCharacterEncoding("UTF-8");String usr = request.getParameter("usr");String psd = request.getParameter("psd");usr = new String(usr.getBytes("ISO-8859-1"), "UTF-8");psd = new String(psd.getBytes("ISO-8859-1"), "UTF-8");
当把

request.setCharacterEncoding("UTF-8");
改为:

request.setCharacterEncoding("ISO-8859-1");
或者删除(Tomcat容器默认编码为ISO-8859-1),则显示正确。

这对于get/post都是一样的。

两种方法的区别:

对于 URL 提交的数据和表单中 GET 方式提交的数据,在接收数据的 JSP 中设置 request.setCharacterEncoding 参数是不行的,因为在 Tomcat5.0 中,默认情况下使用ISO-8859-1 对 URL 提交的数据和表单中 GET 方式提交的数据进行重新编码(解码),而不使用该参数对 URL 提交的数据和表单中 GET 方式提交的数据进行重新编码(解码)。要解决该问题,应该在 Tomcat 的配置文件的 Connector 标签中设置useBodyEncodingForURI 或者 URIEncoding 属性,其中 useBodyEncodingForURI 参数表示是否用 request.setCharacterEncoding 参数对 URL 提交的数据和表单中 GET 方式提交的数据进行重新编码,在默认情况下,该参数为 false (Tomcat4.0 中该参数默认为true );URIEncoding 参数指定对所有 GET 方式请求(包括 URL 提交的数据和表单中 GET 方式提交的数据)进行统一的重新编码(解码)的编码。URIEncoding 和 useBodyEncodingForURI 区别是,URIEncoding 是对所有 GET 方式的请求的数据进行统一的重新编码(解码),而 useBodyEncodingForURI 则是根据响应该请求的页面的request.setCharacterEncoding 参数对数据进行的重新编码(解码),不同的页面可以有不同的重新编码(解码)的编码。所以对于 URL 提交的数据和表单中 GET 方式提交的数据,可以修改 URIEncoding 参数为浏览器编码或者修改 useBodyEncodingForURI 为true ,并且在获得数据的 JSP 页面中 request.setCharacterEncoding参数设置成浏览器编码。

http://www.cnblogs.com/x_wukong/p/3651853.html?utm_source=tuicool

http://zhuhuide2004.iteye.com/blog/562739

转载于:https://www.cnblogs.com/lgh1992314/p/6616255.html

你可能感兴趣的文章
Alan Turing的纪录片观后感
查看>>
c#自定义控件中的事件处理
查看>>
IOS--沙盒机制
查看>>
使用 JointCode.Shuttle 访问任意 AppDomain 的服务
查看>>
sqlite的坑
查看>>
digitalocean --- How To Install Apache Tomcat 8 on Ubuntu 16.04
查看>>
【题解】[P4178 Tree]
查看>>
Mongo自动备份
查看>>
cer证书签名验证
查看>>
synchronized
查看>>
【深度学习】caffe 中的一些参数介绍
查看>>
Python-Web框架的本质
查看>>
QML学习笔记之一
查看>>
App右上角数字
查看>>
从.NET中委托写法的演变谈开去(上):委托与匿名方法
查看>>
小算法
查看>>
201521123024 《java程序设计》 第12周学习总结
查看>>
新作《ASP.NET MVC 5框架揭秘》正式出版
查看>>
IdentityServer4-用EF配置Client(一)
查看>>
WPF中实现多选ComboBox控件
查看>>