摘要:
chain.doFilter(request,response)的作用是将请求转发给过滤器链上的下一个对象。这里的“下”指的是下一个filter,如果没有filter那就是你请求的资源。一般filter都是一个链,在web.xml里面配置几个就有几个。一个一个的连在一起request ----》filter1-----》filter2------》filter3........------>request source注意:filter在web.xml中 是有顺序的。 阅读全文
摘要:
1、获取URL的值为乱码(GET)String para=new String(request.getParameter("para").getBytyes("iso8859-1"),"gb2312");2、获取Form的值为乱码(POST)使用过滤器配置EncodingFilter;public class EncodingFilter Implements Filter{public void init(FilterConfig fconfig)throws ServletException{}public void doFilt 阅读全文