笔记如下
-
首先要使用Filter类的实现类,必须到web.xml中去注册.
4.png -
EncodingFilter
//同一配置编码
@Override
public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain)
throws IOException, ServletException {
// TODO Auto-generated method stub
String encoding = config.getInitParameter("encoding");
response.setContentType("text/html;charset=" + encoding);
chain.doFilter(request, response);
}
网友评论