过滤器大全

 

看完后,觉得好的话,顶一下。

一、字符编码的过滤器 
import javax.servlet.*; 
import java.io.IOException; 

/** *//** 
* 用于设置 HTTP 请求字符编码的过滤器,通过过滤器参数encoding指明使用何种字符编码,用于处理Html Form请求参数的中文问题 
*/ 
public class CharacterEncodingFilter 
implements Filter 

protected FilterConfig filterConfig = null; 
protected String encoding = ""; 

public void doFilter(ServletRequest servletRequest, ServletResponse servletResponse, FilterChain filterChain) throws IOException, ServletException 

if(encoding != null) 
servletRequest.setCharacterEncoding(encoding); 
filterChain.doFilter(servletRequest, servletResponse); 


public void destroy() 

filterConfig = null; 
encoding = null; 


public void init(FilterConfig filterConfig) throws ServletException 

this.filterConfig = filterConfig; 
this.encoding = filterConfig.getInitParameter("encoding"); 




二、使浏览器不缓存页面的过滤器 
import javax.servlet.*; 
import javax.servlet.http.HttpServletResponse; 
import java.io.IOException; 

/** *//** 
* 用于的使 Browser 不缓存页面的过滤器 
*/ 
public class ForceNoCacheFilter implements Filter { 

public void doFilter(ServletRequest request, ServletResponse response, FilterChain filterChain) throws IOException, ServletException 

((HttpServletResponse) response).setHeader("Cache-Control","no-cache"); 
((HttpServletResponse) response).setHeader("Pragma","no-cache"); 
((HttpServletResponse) response).setDateHeader ("Expires", -1); 
filterChain.doFilter(request, response); 


public void destroy() { 


public void init(FilterConfig filterConfig) throws ServletException { 


三、检测用户是否登陆的过滤器 
import javax.servlet.*; 
import javax.servlet.http.HttpServletRequest; 
import javax.servlet.http.HttpServletResponse; 
import javax.servlet.http.HttpSession; 
import java.util.List; 
import java.util.ArrayList; 
import java.util.StringTokenizer; 
import java.io.IOException; 

/** *//** 
* 用于检测用户是否登陆的过滤器,如果未登录,则重定向到指的登录页面 


* 配置参数 


* checkSessionKey 需检查的在 Session 中保存的关键字 

* redirectURL 如果用户未登录,则重定向到指定的页面,URL不包括 ContextPath 

* notCheckURLList 不做检查的URL列表,以分号分开,并且 URL 中不包括 ContextPath 

*/ 
public class CheckLoginFilter 
implements Filter 

protected FilterConfig filterConfig = null; 
private String redirectURL = null; 
private List notCheckURLList = new ArrayList(); 
private String sessionKey = null; 

public void doFilter(ServletRequest servletRequest, ServletResponse servletResponse, FilterChain filterChain) throws IOException, ServletException 

HttpServletRequest request = (HttpServletRequest) servletRequest; 
HttpServletResponse response = (HttpServletResponse) servletResponse; 

HttpSession session = request.getSession(); 
if(sessionKey == null) 

filterChain.doFilter(request, response); 
return; 

if((!checkRequestURIIntNotFilterList(request)) && session.getAttribute(sessionKey) == null) 

response.sendRedirect(request.getContextPath() + redirectURL); 
return; 

filterChain.doFilter(servletRequest, servletResponse); 


public void destroy() 

notCheckURLList.clear(); 


private boolean checkRequestURIIntNotFilterList(HttpServletRequest request) 

String uri = request.getServletPath() + (request.getPathInfo() == null ? "" : request.getPathInfo()); 
return notCheckURLList.contains(uri); 


public void init(FilterConfig filterConfig) throws ServletException 

this.filterConfig = filterConfig; 
redirectURL = filterConfig.getInitParameter("redirectURL"); 
sessionKey = filterConfig.getInitParameter("checkSessionKey"); 

String notCheckURLListStr = filterConfig.getInitParameter("notCheckURLList"); 

if(notCheckURLListStr != null) 

StringTokenizer st = new StringTokenizer(notCheckURLListStr, ";"); 
notCheckURLList.clear(); 
while(st.hasMoreTokens()) 

notCheckURLList.add(st.nextToken()); 





四、资源保护过滤器 
package catalog.view.util; 

import javax.servlet.Filter; 
import javax.servlet.FilterConfig; 
import javax.servlet.ServletRequest; 
import javax.servlet.ServletResponse; 
import javax.servlet.FilterChain; 
import javax.servlet.ServletException; 
import javax.servlet.http.HttpServletRequest; 
import java.io.IOException; 
import java.util.Iterator; 
import java.util.Set; 
import java.util.HashSet; 
// 
import org.apache.commons.logging.Log; 
import org.apache.commons.logging.LogFactory; 

/** *//** 
* This Filter class handle the security of the application. 

* It should be configured inside the web.xml. 

* @author Derek Y. Shen 
*/ 
public class SecurityFilter implements Filter { 
//the login page uri 
private static final String LOGIN_PAGE_URI = "login.jsf"; 

//the logger object 
private Log logger = LogFactory.getLog(this.getClass()); 

//a set of restricted resources 
private Set restrictedResources; 

/** *//** 
* Initializes the Filter. 
*/ 
public void init(FilterConfig filterConfig) throws ServletException { 
this.restrictedResources = new HashSet(); 
this.restrictedResources.add("/createProduct.jsf"); 
this.restrictedResources.add("/editProduct.jsf"); 
this.restrictedResources.add("/productList.jsf"); 


/** *//** 
* Standard doFilter object. 
*/ 
public void doFilter(ServletRequest req, ServletResponse res, FilterChain chain) 
throws IOException, ServletException { 
this.logger.debug("doFilter"); 

String contextPath = ((HttpServletRequest)req).getContextPath(); 
String requestUri = ((HttpServletRequest)req).getRequestURI(); 

this.logger.debug("contextPath = " + contextPath); 
this.logger.debug("requestUri = " + requestUri); 

if (this.contains(requestUri, contextPath) && !this.authorize((HttpServletRequest)req)) { 
this.logger.debug("authorization failed"); 
((HttpServletRequest)req).getRequestDispatcher(LOGIN_PAGE_URI).forward(req, res); 

else { 
this.logger.debug("authorization succeeded"); 
chain.doFilter(req, res); 



public void destroy() {} 

private boolean contains(String value, String contextPath) { 
Iterator ite = this.restrictedResources.iterator(); 

while (ite.hasNext()) { 
String restrictedResource = (String)ite.next(); 

if ((contextPath + restrictedResource).equalsIgnoreCase(value)) { 
return true; 



return false; 


private boolean authorize(HttpServletRequest req) { 

//处理用户登录 
/**//* UserBean user = (UserBean)req.getSession().getAttribute(BeanNames.USER_BEAN); 

if (user != null && user.getLoggedIn()) { 
//user logged in 
return true; 

else { 
return false; 
}*/ 



五 利用Filter限制用户浏览权限 

在一个系统中通常有多个权限的用户。不同权限用户的可以浏览不同的页面。使用Filter进行判断不仅省下了代码量,而且如果要更改的话只需要在Filter文件里动下就可以。 
以下是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; 
import javax.servlet.http.HttpServletRequest; 

public class RightFilter implements Filter { 

public void destroy() { 



public void doFilter(ServletRequest sreq, ServletResponse sres, FilterChain arg2) throws IOException, ServletException { 
// 获取uri地址 
HttpServletRequest request=(HttpServletRequest)sreq; 
String uri = request.getRequestURI(); 
String ctx=request.getContextPath(); 
uri = uri.substring(ctx.length()); 
//判断admin级别网页的浏览权限 
if(uri.startsWith("/admin")) { 
if(request.getSession().getAttribute("admin")==null) { 
request.setAttribute("message","您没有这个权限"); 
request.getRequestDispatcher("/login.jsp").forward(sreq,sres); 
return; 


//判断manage级别网页的浏览权限 
if(uri.startsWith("/manage")) { 
//这里省去 


//下面还可以添加其他的用户权限,省去。 



public void init(FilterConfig arg0) throws ServletException { 





<!-- 判断页面的访问权限 --> 
<filter> 
<filter-name>RightFilter</filter-name> 
<filter-class>cn.itkui.filter.RightFilter</filter-class> 
</filter> 
<filter-mapping> 
<filter-name>RightFilter</filter-name> 
<url-pattern>/admin/**//*</url-pattern> 
</filter-mapping> 
<filter-mapping> 
<filter-name>RightFilter</filter-name> 
<url-pattern>/manage/*</url-pattern> 
</filter-mapping> 

在web.xml中加入Filter的配置,如下: 
<filter> 

<filter-name>EncodingAndCacheflush</filter-name> 
<filter-class>EncodingAndCacheflush</filter-class> 
<init-param> 
<param-name>encoding</param-name> 
<param-value>UTF-8</param-value> 
</init-param> 
</filter> 
<filter-mapping> 
<filter-name>EncodingAndCacheflush</filter-name> 
<url-pattern>/*</url-pattern> 
</filter-mapping> 

要传递参数的时候最好使用form进行传参,如果使用链接的话当中文字符的时候过滤器转码是不会起作用的,还有就是页面上 

form的method也要设置为post,不然过滤器也起不了作用。
资源下载链接为: https://pan.quark.cn/s/d9ef5828b597 在 Excel 电子表格中,回车换行符常用于分隔文本,使数据呈现多行显示。但在某些场景下,比如数据导入其他系统或进行特定计算时,这些换行符可能会引发问题。因此,批量清除或替换 Excel 中的回车换行符就显得十分关键。 我们可以通过手动操作来替换或清除 Excel 中的回车换行符。具体操作为:打开 Excel 文件,选中包含换行符的单元格或整个工作表,点击顶部的“查找和选择”按钮,在弹出的对话框中选择“替换”选项卡。在“查找内容”栏中,按住 Alt+Enter 键输入回车换行符(在无字符显示处按一次即可),在“替换为”栏中不输入任何内容,表示将回车换行符替换为空,最后点击“全部替换”按钮,Excel 会遍历整个选区,将所有回车换行符替换为空。不过,手动操作效率较低,尤其是当文件较大或需要处理多个文件时,这种方法就不太适用了。 此时,可以借助第三方工具,例如 ReplaceExcelEnterWrap.exe。这是一个专门用于批量处理 Excel 文件中回车换行符的小型应用程序。使用步骤如下:首先,下载并解压缩 ReplaceExcelEnterWrap.exe 压缩包;接着,将包含需要处理的 Excel 文件的文件夹与 ReplaceExcelEnterWrap.exe 放在同一目录下;然后,运行 ReplaceExcelEnterWrap.exe 程序,它会自动搜索该目录下的所有 Excel 文件;程序会询问是否替换回车换行符以及是否清除空格,根据需求选择相应选项;最后,等待程序执行完毕,所有指定操作将在原文件上完成,无需手动保存。 除了 ReplaceExcelEnterWrap.exe,还可以使用其他编程语言(如 Python、VBA 等)编写脚本来实现批量处理。例如,在 Pyt
内容概要:本文详细介绍了手工艺品销售系统的设计与实现,旨在通过计算机技术提升手工艺品销售的信息管理水平。该系统基于Java语言和Spring Boot框架构建,使用MySQL数据库进行数据管理。系统主要功能包括手工艺品管理、评价管理、订单管理、购物车管理和求购管理等,涵盖了管理员、商家和用户三类用户群体的具体操作需求。文中还详细描述了系统的开发技术、设计原则、功能模块、数据库设计及其实现过程,并通过多种测试确保系统的稳定性和功能性。此外,文章讨论了系统的优点,如高效的信息处理、友好的操作界面和较低的误操作率,但也指出了系统在数据存储和代码优化方面存在的不足。 适合人群:对电子商务系统设计感兴趣的计算机专业学生及从业者,特别是那些希望深入了解基于Java和Spring Boot框架的Web应用程序开发的人士。 使用场景及目标:①适用于希望开发或改进手工艺品销售平台的企业和个人;②为学习如何设计和实现高效、易用的电子商务系统提供参考案例;③帮助理解如何利用现代Web开发技术和数据库管理工具提升业务运营效率。 其他说明:尽管系统具备许多优点,但在数据冗余和代码复用性方面仍有改进空间。未来的工作将集中在优化数据库结构和精简代码以提高系统性能和维护性。同时,本文还强调了在项目开发过程中持续学习和解决问题的重要性,感谢了导师和其他相关人员的支持与帮助。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值