主頁 > 知識庫 > JSP 開發(fā)中過濾器filter設(shè)置編碼格式的實(shí)現(xiàn)方法

JSP 開發(fā)中過濾器filter設(shè)置編碼格式的實(shí)現(xiàn)方法

熱門標(biāo)簽:電話機(jī)器人需要使用網(wǎng)絡(luò)嗎 潤滑油銷售電銷機(jī)器人 給地圖標(biāo)注得傭金 如何看懂地圖標(biāo)注點(diǎn) 電銷機(jī)器人免培訓(xùn) 海外圖書館地圖標(biāo)注點(diǎn) 南通通訊外呼系統(tǒng)產(chǎn)品介紹 外呼系統(tǒng)使用方法 自繪地圖標(biāo)注數(shù)據(jù)

JSP 開發(fā)中過濾器filter設(shè)置編碼格式的實(shí)現(xiàn)方法

我們知道為了避免提交數(shù)據(jù)的亂碼問題,需要在每次使用請求之前設(shè)置編碼格式。在你復(fù)制粘貼了無數(shù)次request.setCharacterEncoding("gb2312");后,有沒有想要一勞永逸的方法呢?能不能一次性修改所有請求的編碼呢? 用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; 
import javax.servlet.http.HttpServletResponse; 
 
public class SetCharacterEncodingFilter implements Filter { //要實(shí)現(xiàn)Filter接口 
 //存儲編碼格式信息 
 private String encode = null; 
 public void destroy(){ 
  
 } 
  
 public void doFilter(ServletRequest req,ServletResponse resp,FilterChain chain) 
  throws IOException,ServletException{ 
  
 //轉(zhuǎn)換 
 HttpServletRequest request = (HttpServletRequest)req; 
 HttpServletResponse response = (HttpServletResponse)resp; 
  
 /* 
  * 判斷在web.xml文件中是否配置了編碼格式的信息 
  * 如果為空,則設(shè)置編碼格式為配置文件中的編碼格式 
  * 否則編碼格式設(shè)置為GBK 
  */ 
 if(this.encode != null  !this.encode.equals("")){ 
  request.setCharacterEncoding(this.encode); 
  response.setCharacterEncoding(this.encode); 
 }else{ 
  request.setCharacterEncoding("GBK"); 
  response.setCharacterEncoding("GBK"); 
 } 
  
 /* 
  * 使用doFilter方法調(diào)用鏈中的下一個(gè)過濾器或目標(biāo)資源(servlet或JSP頁面)。 
  * chain.doFilter處理過濾器的其余部分(如果有的話),最終處理請求的servlet或JSP頁面。 
  */ 
 chain.doFilter(request, response); 
 } 
  
 public void init(FilterConfig config) throws ServletException{ 
 //獲取在web.xml文件中配置了的編碼格式的信息 
 this.encode = config.getInitParameter("encode"); 
 } 
  
  
} 



 在web.xml文件中的配置信息如下:

?xml version="1.0" encoding="UTF-8"?> 
web-app xmlns="http://java.sun.com/xml/ns/j2ee" 
 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="2.4" 
 xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee  http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"> 
 
 !-- 過濾器配置信息 --> 
 filter> 
 filter-name>SetCharacterEncodingFilter/filter-name> 
 !-- 過濾器設(shè)置編碼文件 --> 
 filter-class> 
  ssh.dlc.chp1.filter.SetCharacterEncodingFilter 
 /filter-class> 
 init-param> 
   !-- 
    init-param元素定義了過濾器的初始化參數(shù) 
    --> 
  description>給參數(shù)和值設(shè)置名稱和編碼類型/description> 
  param-name>encode/param-name> 
  param-value>GBK/param-value> 
 /init-param> 
 /filter> 
 filter-mapping> 
 !--  
  filter-mapping告訴容器所有與模式向匹配的請求都應(yīng)該允許通過訪問控制過濾器。 
  所有以.do結(jié)尾的訪問都先通過過濾器文件過濾  
 --> 
 filter-name>SetCharacterEncodingFilter/filter-name> 
 url-pattern>*.do/url-pattern> 
 /filter-mapping> 
/web-app> 

以上就是過濾器filter設(shè)置編碼格式的方法,如有疑問請留言或者到本站社區(qū)交流討論,大家共同進(jìn)步,感謝閱讀,希望能幫助到大家,謝謝大家對本站的支持!

您可能感興趣的文章:
  • 通過過濾器(Filter)解決JSP的Post和Request中文亂碼問題
  • JSP過濾器Filter配置過濾類型全部匯總
  • JSP使用Servlet過濾器進(jìn)行身份驗(yàn)證的方法
  • JSP過濾器防止Xss漏洞的實(shí)現(xiàn)方法(分享)
  • JSP使用過濾器防止SQL注入的簡單實(shí)現(xiàn)
  • jsp實(shí)現(xiàn)登錄驗(yàn)證的過濾器
  • jsp中過濾器選擇過濾器的寫法詳解
  • 詳解JSP中使用過濾器進(jìn)行內(nèi)容編碼的解決辦法
  • servlet+jsp實(shí)現(xiàn)過濾器 防止用戶未登錄訪問
  • JSP使用過濾器防止Xss漏洞
  • jsp filter 過濾器功能與簡單用法示例

標(biāo)簽:樂山 黃石 銅川 貸款邀約 南京 廣州 內(nèi)江 大連

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《JSP 開發(fā)中過濾器filter設(shè)置編碼格式的實(shí)現(xiàn)方法》,本文關(guān)鍵詞  JSP,開發(fā),中,過濾器,filter,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《JSP 開發(fā)中過濾器filter設(shè)置編碼格式的實(shí)現(xiàn)方法》相關(guān)的同類信息!
  • 本頁收集關(guān)于JSP 開發(fā)中過濾器filter設(shè)置編碼格式的實(shí)現(xiàn)方法的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章