你好,游客 登录 注册 搜索
背景:
阅读新闻

http请求参数中中文乱码问题解决办法

[日期:2016-09-17] 来源:Linux社区  作者:hutton [字体: ]

问题现象:

请求URL为:

http://127.0.0.1:9999/micp/queryObjectOut?moduleId=1&json={"hphm":"H3XX96","hpzl":"02","hphm_cn":""}

后台接收到json字符串中hphm_cn始终为乱码。

解决办法:

1 首先处理整个项目编码,保持一致。servlet通过过滤器完成,过滤器代码如下:

package cn.woogo.micp.filter;

import java.io.IOException;

import javax.servlet.Filter;
import javax.servlet.FilterChain;
import javax.servlet.FilterConfig;import javax.servlet.ServletException;
import javax.servlet.ServletRequest;
import javax.servlet.ServletResponse;

/**
* ClassName: CharacterEncodingFilter
*
* @Description: 处理请求参数乱码问题
*
@author Zeus
* @date 2016-5-17
*/
public class CharacterEncodingFilter implements Filter {

   
protected String encoding = null;

   
protected FilterConfig filterConfig = null;

   
protected boolean ignore = true;

    @Override
   
public void destroy() {
       
this.encoding = null;
       
this.filterConfig = null;
    }

    @Override
   
public void doFilter(ServletRequest request, ServletResponse response,
            FilterChain chain)
throws IOException, ServletException {
       
if (ignore || (request.getCharacterEncoding() == null)) {
            String encoding
= selectEncoding(request);
           
if (encoding != null)
                request.setCharacterEncoding(encoding);
        }
        chain.doFilter(request, response);
    }

    @Override
   
public void init(FilterConfig filterConfig) throws ServletException {
       
this.filterConfig = filterConfig;
       
// 获取初始化参数
        this.encoding = filterConfig.getInitParameter("encoding");
        String value
= filterConfig.getInitParameter("ignore");
       
if (value == null) {
           
this.ignore = true;
        }
else if (value.equalsIgnoreCase("true")) {
           
this.ignore = true;
        }
else if (value.equalsIgnoreCase("yes")) {
           
this.ignore = true;
        }
else
            this.ignore = false;

    }

   
protected String selectEncoding(ServletRequest request) {
       
return (this.encoding);
    }
}

2  web.xml文件中配置:

<?xml version="1.0" encoding="UTF-8"?>
<web-appversion="2.5" xmlns="http://java.sun.com/xml/ns/javaee"
    xmlns:xsi
="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation
="http://java.sun.com/xml/ns/javaee
    http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
>
    <welcome-file-list>
        <welcome-file>index.jsp</welcome-file>
    </welcome-file-list>

    <!--编码处理过滤器-->
    <filter>
        <filter-name>Character Encoding</filter-name>
        <filter-class>cn.woogo.micp.filter.CharacterEncodingFilter</filter-class>
        <init-param>
            <param-name>encoding</param-name>
            <param-value>UTF-8</param-value>
        </init-param>
    </filter>
    <!--制定过滤器映射-->
    <filter-mapping>
        <filter-name>Character Encoding</filter-name>
        <url-pattern>/*</url-pattern>
    </filter-mapping>

</web-app>

3 tomcat配置

打开tomcat安装路径,e.g. D:\tomcat\apache-tomcat-7.0.64\conf\server.xml,增加URIEncoding。如下:

<Connector port="9999" protocol="HTTP/1.1"
connectionTimeout="20000"
redirectPort="8443" URIEncoding ="UTF-8"/>

本文永久更新链接地址http://www.linuxidc.com/Linux/2016-09/135233.htm

linux
相关资讯       http请求参数中文乱码 
本文评论   查看全部评论 (0)
表情: 表情 姓名: 字数

       

评论声明
  • 尊重网上道德,遵守中华人民共和国的各项有关法律法规
  • 承担一切因您的行为而直接或间接导致的民事或刑事法律责任
  • 本站管理人员有权保留或删除其管辖留言中的任意内容
  • 本站有权在网站内转载或引用您的评论
  • 参与本评论即表明您已经阅读并接受上述条款