过滤器的使用

Posted fengjianbk

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了过滤器的使用相关的知识,希望对你有一定的参考价值。

过滤器的使用:

未用过滤器前,出现乱码:

技术图片

 使用后恢复正常:

技术图片

过滤器相关代码:

package MyFilter;
 
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;
import javax.servlet.annotation.WebFilter;
 
/**
 * Servlet Filter implementation class EncodingFilter
 */
@WebFilter("/EncodingFilter")
public class myFilter implements Filter {
 
    /**
     * Default constructor.
     */
    public myFilter() {
        // TODO Auto-generated constructor stub
    }
 
    /**
     * @see Filter#destroy()
     */
    public void destroy() {
        // TODO Auto-generated method stub
    }
 
    /**
     * @see Filter#doFilter(ServletRequest, ServletResponse, FilterChain)
     */
    public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain) throws IOException, ServletException {
        // TODO Auto-generated method stub
        // place your code here
        // pass the request along the filter chain
 
        request.setCharacterEncoding("UTF-8");
        response.setContentType("text/html;charset=UTF-8");
        chain.doFilter(request, response);
    }
 
    /**
     * @see Filter#init(FilterConfig)
     */
    public void init(FilterConfig fConfig) throws ServletException {
        // TODO Auto-generated method stub
    }
 
}

Filter.java

链接:https://pan.baidu.com/s/1od29C86bFzfnXb3j9acnFA
提取码:uzqx
复制这段内容后打开百度网盘手机App,操作更方便哦

 

以上是关于过滤器的使用的主要内容,如果未能解决你的问题,请参考以下文章

Huawei_Netconf_Ncclient

基于内部片段的graphql过滤器(gatsbyJS)

CPNtools协议建模安全分析---实例变迁标记

在底部导航栏中保存片段状态

js简洁代码片段

在Pandoc lua过滤器中连接字符串片段