在jsp中通過jst的c:import>導(dǎo)入html時會出現(xiàn)亂碼的現(xiàn)象,其原因是org.apache.taglibs.standard.tag.common.core.ImportSupport
的charEncoding的值為空則會出現(xiàn)charEncoding為默認值也就是ISO-8859-1
所幸的是charEncoding可以直接通過c:import>直接設(shè)置,所以只需設(shè)置一下就好了,許多人說可以通過在html中通過meta設(shè)置contentType,但我試驗過卻不行,也是通過看jstl的源碼才發(fā)現(xiàn)可以設(shè)置這個,因為平時都是用cimport導(dǎo)入jsp,jsp中設(shè)置是可行的,但是靜態(tài)頁中卻不行。以下是ImportSupport的主要代碼:
復(fù)制代碼 代碼如下:
Reader r = null;
String charSet;
String charSet;
if ((this.charEncoding != null) (!this.charEncoding.equals(""))) {
charSet = this.charEncoding;
}
else {
String contentType = uc.getContentType();
if (contentType != null) {
String charSet = Util.getContentTypeAttribute(contentType, "charset");
if (charSet == null) charSet = "ISO-8859-1";
}
else {
charSet = "ISO-8859-1";
}
}
您可能感興趣的文章:- c++ STL容器總結(jié)之:vertor與list的應(yīng)用
- STL區(qū)間成員函數(shù)及區(qū)間算法總結(jié)
- C++在成員函數(shù)中使用STL的find_if函數(shù)實例
- jsp 使用jstl實現(xiàn)翻頁實例代碼
- STL 的string類怎么啦
- JSP和JSTL獲取服務(wù)器參數(shù)示例
- 關(guān)于STL中set容器的一些總結(jié)
- C++語言 STL容器list總結(jié)