詳解Spring中的CharacterEncodingFilter--forceEncoding為true在java程式碼中設定失效--html設定編碼無效?不知真假

瓜瓜東西發表於2014-07-19

<span style="font-size:14px;color:#ff0000;"><strong>失效--html設定編碼無效?不知真假--
肯定是假的了
web配置 utf8,jsp頁面配置gbk,部署頁面編碼是utf-8程式碼並不亂碼,有時說的並不一定對</strong></span>
















原創作品,允許轉載,轉載時請務必以超連結形式標明文章 原始出處、作者資訊和本宣告。否則將追究法律責任。

本文連結:http://blog.sina.com.cn/s/blog_92b93d6f0100ypp9.html 

 

在專案中有很多讓人頭疼的問題,其中,編碼問題位列其一,那麼在Spring框架中是如何解決從頁面傳來的字串的編碼問題的呢?下面我們來看看Spring框架給我們提供過濾器CharacterEncodingFilter

1.看清結構:

詳解Spring中的CharacterEncodingFilter【原】
可以看到其繼承GenericFilterBean和OncePerRequestFilter,也就是說,這個過濾器就是針對於每次瀏覽器請求進行過濾的,然後再其之上新增了父類沒有的功能即處理字元編碼。

 

2.官方解釋:

Servlet 2.3/2.4 Filter that allows one to specify a character encoding for requests. This is useful because current browsers typically do not set a character encoding even if specified in the HTML page or form. (這句話就說你在html頁面或表單中設定編碼是沒有用的)

This filter can either apply its encoding if the request does not already specify an encoding, or enforce this filter's encoding in any case ("forceEncoding"="true").(只要你設定了foreEncoding=true,則在程式碼中設定編碼格式沒用,)In the latter case, the encoding will also be applied as default response encoding on Servlet 2.4+ containers (although this will usually be overridden by a full content type set in the view).

 

3.如何使用

下面來看看如何在web.xml中配置:

 <filter>
  <filter-name>encodingFilter</filter-name>
  <filter-class>org.springframework.web.
filter.CharacterEncodingFilter

  </filter-class>
  <init-param>
   <param-name>encoding</param-name>
   <param-value>UTF-8</param-value>
  </init-param>
  <init-param>
   <param-name>forceEncoding</param-name>
   <param-value>true</param-value>
  </init-param>
 </filter>

 其中encoding用來設定編碼格式,forceEncoding用來設定是否理會 request.getCharacterEncoding()方法,設定為true則強制覆蓋之前的編碼格式。

 

4.原始碼賞析

詳解Spring中的CharacterEncodingFilter【原】

當Servlet容器啟動的時候,會讀取web.xml中對於過濾器的配置資訊, 讀取到<init-param>中的子標籤<param-name>encoding和forceEncoding所對應的<param-value>的值,再通過呼叫該類setEncoding(String encoding)和setForceEncoding(boolean forceEncoding) 將值注入到這連個欄位中。
詳解Spring中的CharacterEncodingFilter【原】

在這裡就能看到為什麼設定foreEncoding為true會覆蓋掉request.getCharacterEncoding()中的方法了吧,呵呵,還是那句話,原始碼之前了無祕密,只有深入到原始碼之中才能看清本質。

本文出自“foyuanchina”部落格,請務必保留此出處http://blog.sina.com.cn/s/blog_92b93d6f0100ypp9.html

相關文章