Webアプリケーションの文字化けし(1)_ソリューション


1.Tomcatのプロファイルを変更する:tomcatのすべてのタグのURIEncoding属性を設定する
2.Filterフィルタにより、要求がサーブレットに到達する前に、要求を処理し、要求の符号化フォーマットを指定する.
Filterリファレンス記事のSetCharacterEncodingFilter
コアコード:
1.符号化フォーマットの初期化:
    
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;

    }

2.doFilterで要求の符号化フォーマットを指定します.
public void doFilter(ServletRequest request, ServletResponse response,
                         FilterChain chain)
	throws IOException, ServletException {

        // Conditionally select and set the character encoding to be used
        if (ignore || (request.getCharacterEncoding() == null)) {
            String encoding = selectEncoding(request);
            if (encoding != null)
                request.setCharacterEncoding(encoding);
        }

	// Pass control on to the next filter
        chain.doFilter(request, response);

    }

3.web.xmlでの構成
<filter>
    <filter-name>Set Character Encoding</filter-name>
    <filter-class>filters.SetCharacterEncodingFilter</filter-class>
    <init-param>
        <param-name>encoding</param-name>
	<param-value>GBK</param-value>
    </init-param>
</filter>

<filter-mapping>
    <filter-name>Set Character Encoding</filter-name>
    <url-pattern>/*</url-pattern>
</filter-mapping>

参考記事:http://xddawy.blog.163.com/blog/static/1900321952011103025957795/