成都创新互联网站制作重庆分公司

解决Servlet中GET请求参数为中文时出现乱码

服务器:Tomcat 7.0.xx
在Servlet的doGet方法中添加以下代码:

创新互联公司专业为企业提供吉林网站建设、吉林做网站、吉林网站设计、吉林网站制作等企业网站建设、网页设计与制作、吉林企业网站模板建站服务,十载吉林做网站经验,不只是建网站,更提供有价值的思路和整体网络服务。

String str = request.getParameter("username");
byte[] bytes = str.getBytes("iso-8859-1");
str = new String(bytes, "utf-8");

例子:

    protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {

        String str = request.getParameter("username");
        byte[] bytes = str.getBytes("iso-8859-1");
        str = new String(bytes, "utf-8");

        System.out.println(str);
    }


当服务器:Tomcat 8.0.xx时,不需要输入 以上代码,可以直接输出

例子:

    protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {

        String str = request.getParameter("username");
        System.out.println(str);
    }

本文标题:解决Servlet中GET请求参数为中文时出现乱码
链接地址:http://cxhlcq.com/article/ijdcdo.html

其他资讯

在线咨询

微信咨询

电话咨询

028-86922220(工作日)

18980820575(7×24)

提交需求

返回顶部