JSF的中文問題
開始學習JSF的時候有遇上中文問題,看了一些文章後突然想起Struts也有中文問題,當時用Filter解決的,我想應該也一樣的,後來在工程里加入後中文問題解決了。多方便啊。
貼出程式碼
web.xml部分
javabean部分
package comm.CN;
import java.io.IOException;
import javax.servlet.*;
public class SetCharacterEncodingFilter implements Filter
{
protected String encoding = null;
protected FilterConfig filterConfig = null;
protected boolean ignore = true;
public void destroy() {
this.encoding = null;
this.filterConfig = null;
}
public void doFilter(ServletRequest request, ServletResponse response,
FilterChain chain)
throws IOException, ServletException {
if (ignore || (request.getCharacterEncoding() == null)) {
String encoding = selectEncoding(request);
if (encoding != null)
request.setCharacterEncoding(encoding);
}
chain.doFilter(request, response);
}
public void init(FilterConfig filterConfig) throws ServletException {
this.filterConfig = filterConfig;
this.encoding = filterConfig.getInitParameter("encoding");
String value = filterConfig.getInitParameter("ignore");
if (value == null)
this.ignore = true;
else if (value.equalsIgnoreCase("true"))
this.ignore = true;
else if (value.equalsIgnoreCase("yes"))
this.ignore = true;
else
this.ignore = false;
}
protected String selectEncoding(ServletRequest request) {
return (this.encoding);
}
}
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/102197/viewspace-967250/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- JSF的問題JS
- JSF效能問題JS
- jsf取值的簡單問題JS
- 請教JSF和Struts的問題JS
- JSF中h:datatable使用問題JS
- JSF方面的問題_請教板橋JS
- mysql的中文問題MySql
- JSF的outputText時,無法處理換行問題JS
- 請教一個JSF引數傳遞的問題JS
- java 中文問題Java
- 中文排序 問題排序
- getParameter方法的中文問題【轉】
- jboss下mysql的中文問題MySql
- 抓狂的ibatis中文問題BAT
- JAVA的中文編碼問題Java
- 解決localdb中文智慧的問題
- Python的中文編碼問題Python
- 暫時解決的中文問題
- EasyUI 中文亂碼問題UI
- MSSQL中文亂碼問題SQL
- Java 中文 亂碼問題Java
- perl中文處理問題
- Python中文問題研究Python
- Ubuntu中 MySQL 的中文編碼問題UbuntuMySql
- impdp遇到char字元含中文的問題字元
- MySQL 中文 like 問題解決MySql
- git bash輸入中文問題Git
- SpringMVC中文亂碼問題SpringMVC
- python 中文編碼問題Python
- Python中文亂碼問題Python
- python中文註釋問題Python
- Cookie值中文亂碼問題Cookie
- JSP中文問題,急助!!!JS
- jdom解析中文編碼問題
- jive中文問題解決方案
- 資料庫中文問題,急資料庫
- jbuilder資料庫中文問題UI資料庫
- Java中文問題詳解(轉)Java