中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

怎樣分析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

太康县| 徐州市| 蓬溪县| 大港区| 航空| 营山县| 苍梧县| 穆棱市| 怀柔区| 翁源县| 正蓝旗| 周至县| 大同市| 开封县| 罗山县| 乃东县| 五家渠市| 龙南县| 邻水| 雷山县| 南宁市| 阳谷县| 东兰县| 西平县| 泰宁县| 胶州市| 乾安县| 东阿县| 公安县| 万载县| 吉木乃县| 温州市| 桦川县| 九江市| 扎赉特旗| 公安县| 敖汉旗| 临桂县| 清流县| 来凤县| 同江市|