问题现象:

请求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);
    }
}
View Code

相关文章:

  • 2021-07-06
  • 2021-09-23
  • 2021-06-04
  • 2022-12-23
  • 2021-12-29
  • 2022-12-23
  • 2022-12-23
  • 2021-05-06
猜你喜欢
  • 2021-07-21
  • 2021-04-01
  • 2021-05-27
  • 2022-12-23
  • 2022-12-23
  • 2022-01-24
  • 2022-02-21
相关资源
相似解决方案