程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> JSP編程 >> 關於JSP >> jsp中使用jstl導入html亂碼問題解決方法

jsp中使用jstl導入html亂碼問題解決方法

編輯:關於JSP

在jsp中通過jst的<c:import>導入html時會出現亂碼的現象,其原因是org.apache.taglibs.standard.tag.common.core.ImportSupport

的charEncoding的值為空則會出現charEncoding為默認值也就是ISO-8859-1

所幸的是charEncoding可以直接通過<c:import>直接設置,所以只需設置一下就好了,許多人說可以通過在html中通過meta設置contentType,但我試驗過卻不行,也是通過看jstl的源碼才發現可以設置這個,因為平時都是用cimport導入jsp,jsp中設置是可行的,但是靜態頁中卻不行。以下是ImportSupport的主要代碼:
復制代碼 代碼如下:
 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";
        }
      }

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved