博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Servlet中通过过滤器实现统一的手动编码(解决中文乱码)
阅读量:5356 次
发布时间:2019-06-15

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

   1.web.xml片段:

  

zhima_demo
index.html
index.htm
index.jsp
default.html
default.htm
default.jsp
CharactorFilter
filter.CharactorFilter
encoding
utf-8
CharactorFilter
/*

 2.实现类片段

package 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;public class CharactorFilter implements Filter { //继承Filter类    //字符编码    private String encoding = null;    public void doFilter(ServletRequest request, ServletResponse response,            FilterChain chain) throws IOException, ServletException {        if(encoding!=null){        //设置request字符编码            request.setCharacterEncoding(encoding);         //设置response字符编码            response.setContentType("text/html;charset="+encoding);        }        //传递给下一个过滤器        chain.doFilter(request, response);    }    public void init(FilterConfig filterConfig) throws ServletException {      //获取初始化参数        encoding=filterConfig.getInitParameter("encoding");    }    public void destroy() {        // TODO Auto-generated method stub        encoding=null;    }}

 

转载于:https://www.cnblogs.com/zdd-java/p/5945236.html

你可能感兴趣的文章
Selenium之Web页面滚动条滚操作
查看>>
组合数据类型练习,英文词频统计实例上
查看>>
Uber回馈开源的一些软件
查看>>
day 3 修改haproxy.cfg 作业
查看>>
UIScrollView —— 缩放实现案例(二)
查看>>
【Qt】Qt Linguist介绍【转】
查看>>
sim usim Uim 区别
查看>>
网页中插入透明Flash的方法和技巧
查看>>
动态内存申请函数选择(realloc、malloc 、alloca、 calloc)
查看>>
获取元素属性get_attribute
查看>>
视觉设计师的进化
查看>>
Python/jquery
查看>>
【BZOJ】【2132】圈地计划
查看>>
Lua 语言基本语法
查看>>
ARM 的Thumb状态测试
查看>>
windows下读取utf-8文件
查看>>
apache 启动不了的排查方法
查看>>
Java有没有goto?
查看>>
(转)makefile 的用法
查看>>
求不相邻金币相加和的最大值--动态规划1
查看>>