亚洲乱码中文字幕综合,中国熟女仑乱hd,亚洲精品乱拍国产一区二区三区,一本大道卡一卡二卡三乱码全集资源,又粗又黄又硬又爽的免费视频

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

 更新時間:2013年11月06日 09:33:19   作者:  
本文是對在jsp中使用jstl導入html出現(xiàn)亂碼問題的解決方法進行了介紹,需要的朋友可以過來參考下,希望對大家有所幫助

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

的charEncoding的值為空則會出現(xiàn)charEncoding為默認值也就是ISO-8859-1

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

相關文章

最新評論