91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

怎樣分析JSF的中文問題

發布時間:2021-12-14 14:40:03 來源:億速云 閱讀:141 作者:柒染 欄目:編程語言

怎樣分析JSF的中文問題,很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細講解,有這方面需求的人可以來學習下,希望你能有所收獲。

開始學習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);
}
}

看完上述內容是否對您有幫助呢?如果還想對相關知識有進一步的了解或閱讀更多相關文章,請關注億速云行業資訊頻道,感謝您對億速云的支持。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

jsf
AI

伊吾县| 伊金霍洛旗| 大邑县| 长岭县| 麻阳| 阜阳市| 武邑县| 福清市| 蕉岭县| 枝江市| 乐平市| 唐山市| 临桂县| 镇坪县| 平陆县| 商河县| 洪江市| 商南县| 黄浦区| 长垣县| 桂林市| 鄂托克旗| 沾化县| 成都市| 封开县| 布尔津县| 新竹县| 宽甸| 梁河县| 贡嘎县| 绿春县| 安乡县| 弋阳县| 海淀区| 新疆| 宁德市| 嘉义县| 石门县| 青铜峡市| 湖南省| 屏东县|