字符过滤器+在web.xml中的配置
发布日期:2021-07-01 00:10:50 浏览次数:2 分类:技术文章

本文共 1951 字,大约阅读时间需要 6 分钟。

import javax.servlet.*;

import java.io.IOException;
/**
* 字符过滤器
* @author 大有软件
*/
public class SetCharacterEncodingFilter implements Filter {
    protected String encoding = "GBK";
    protected FilterConfig filterConfig = null;
    protected boolean ignore = true;
    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;
    }
    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);
    }
    protected String selectEncoding(ServletRequest request) {
        return (this.encoding);
    }
    public void destroy() {
        this.encoding = null;
        this.filterConfig = null;
    }
}
注意问题:粗斜体的参数部分必须和过滤器中的属性要一样,否则过滤器可能不起作用。
<!-- 字符过滤器 -->
    <filter>
        <filter-name>encodeFilter</filter-name>
        <filter-class>
            com.dayou.util.SetCharacterEncodingFilter
        </filter-class>
        <init-param>
            <param-name>encoding</param-name>
            <param-value>GBK</param-value>
        </init-param>
        <init-param>
            <param-name>ignore</param-name>
            <param-value>true</param-value>
        </init-param>
    </filter>
    <filter-mapping>
        <filter-name>encodeFilter</filter-name>
        <url-pattern>*.jsp</url-pattern>
    </filter-mapping>
    <filter-mapping>
        <filter-name>encodeFilter</filter-name>
        <url-pattern>*.do</url-pattern>
    </filter-mapping>
    <filter-mapping>
        <filter-name>encodeFilter</filter-name>
        <url-pattern>/*</url-pattern>
    </filter-mapping>

转载地址:https://lztom.blog.csdn.net/article/details/82782384 如侵犯您的版权,请留言回复原文章的地址,我们会给您删除此文章,给您带来不便请您谅解!

上一篇:master定理与时间复杂度
下一篇:解决jsp插入数据库中的数据出现乱码问题

发表评论

最新留言

网站不错 人气很旺了 加油
[***.192.178.218]2024年04月13日 04时56分34秒

关于作者

    喝酒易醉,品茶养心,人生如梦,品茶悟道,何以解忧?唯有杜康!
-- 愿君每日到此一游!

推荐文章