手机
当前位置:查字典教程网 >编程开发 >JSP教程 >jsp中使用jstl导入html乱码问题解决方法
jsp中使用jstl导入html乱码问题解决方法
摘要:在jsp中通过jst的导入html时会出现乱码的现象,其原因是org.apache.taglibs.standard.tag.common....

在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";

}

}

【jsp中使用jstl导入html乱码问题解决方法】相关文章:

java/jsp中 中文问题详解

关于JSP中文问题的解决方法

JSP显示中文问题的解决方案

Jsp页面URL中传递参数乱码的方法

jsp include文件时的一个乱码解决方法

jsp如何解决Form表单乱码问题

jsp 中 ActionForm中文乱码问题解决方法

jsp超链接中文乱码的解决方法

jsp地址栏传中文显示乱码解决方法分享

javascript通过url向jsp页面传递中文参数导致乱码解决方案

精品推荐
分类导航