阿里云-云小站(无限量代金券发放中)
【腾讯云】云服务器、云数据库、COS、CDN、短信等热卖云产品特惠抢购

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

125次阅读
没有评论

共计 2705 个字符,预计需要花费 7 分钟才能阅读完成。

问题现象:

请求 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

正文完
星哥说事-微信公众号
post-qrcode
 0
星锅
版权声明:本站原创文章,由 星锅 于2022-01-21发表,共计2705字。
转载说明:除特殊说明外本站文章皆由CC-4.0协议发布,转载请注明出处。
【腾讯云】推广者专属福利,新客户无门槛领取总价值高达2860元代金券,每种代金券限量500张,先到先得。
阿里云-最新活动爆款每日限量供应
评论(没有评论)
验证码
【腾讯云】云服务器、云数据库、COS、CDN、短信等云产品特惠热卖中