JSF的中文問題

sapphirezhu發表於2007-08-31

開始學習JSF的時候有遇上中文問題,看了一些文章後突然想起Struts也有中文問題,當時用Filter解決的,我想應該也一樣的,後來在工程里加入後中文問題解決了。多方便啊。

貼出程式碼

web.xml部分


Set Character Encoding
comm.CN.SetCharacterEncodingFilter

encoding
GBK


Set Character Encoding
/*

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);
}
}

[@more@]

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/102197/viewspace-967250/,如需轉載,請註明出處,否則將追究法律責任。

相關文章