首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > JAVA > Eclipse开发 >

通过jsp的config对象把web.xml的信息输出到浏览器,为什么中文的配置信息显示为乱码?解决方案

2012-03-29 
通过jsp的config对象把web.xml的信息输出到浏览器,为什么中文的配置信息显示为乱码???关于这个jsp文件在we

通过jsp的config对象把web.xml的信息输出到浏览器,为什么中文的配置信息显示为乱码???
关于这个jsp文件在web.xml中的配置信息为:
<servlet>
                <servlet-name> test </servlet-name>
<jsp-file>
/config.jsp
        </jsp-file>
<init-param>
<param-name>
email
</param-name>
<param-value>
青岛卓软科技有限公司:www.libinsoft.com
</param-value>
</init-param>
        </servlet>
        <servlet-mapping>
<servlet-name> test </servlet-name>
<url-pattern> /config.jsp </url-pattern>
</servlet-mapping>
我在config.jsp文件中通过cofig配置对象输出对于email信息的配置
<%@   page   contentType= "text/html;charset=gb2312 "%>
<html>
<body>
<center>
<br>
青岛卓软科技有限公司客户服务中心:
<%=   new   String(config.getInitParameter( "email ").getBytes( "ISO8859-1 "), "GB2312 ")%>
</center>
</body>
</html>
启动tomcat但是在浏览器中显示这样的信息:配置文件中的中文信息显示的为乱码:
青岛卓软科技有限公司客户服务中心:   ???????????www.libinsoft.com  
怎样解决这个问题:
请高手赐教!!!我会不胜感激!!!


[解决办法]
关注
[解决办法]
<%@ page contentType= "text/html;charset=UTF-8 "%> ,
试试!

热点排行