小编给大家分享一下JSTL读取xml中文乱码如何解决,希望大家阅读完这篇文章后大所收获,下面让我们一起去探讨吧!
使用JSTL的xml标签,分析显示xml文件,遇到中文http://www.php.cn/code/5829.html" target="_blank">乱码问题。xml文件使用utf-8、jsp使用utf-8、html字符集设置为utf-8,按说应该不出现乱码。
仔细分析,问题出现在c:import语句,为该语句指定正确的字符集,就不会出现乱码了。
Html代码
<x:parse var="parsedDoc"> <c:import url="test.cxml" charEncoding="utf-8"></c:import> </x:parse> <h2>读取内容:</h2> <x:out select="$parsedDoc/Collection/Items/Item[@Id=0]/Description"/><br>
test.cxml的内容如下:
<?xml version="1.0" encoding="utf-8"?> <Collection> <Items> <Item Id="0"> <Description>隔壁老王的博客,wallimn</Description> </Item> <Item Id="1"> <Description>http://wallimn.iteye.com</Description> </Item> <Item Id="3"> <Description>这是一段中文信息。</Description> </Item> </Items> </Collection>
看完了这篇文章,相信你对JSTL读取xml中文乱码如何解决有了一定的了解,想了解更多相关知识,欢迎关注亿速云行业资讯频道,感谢各位的阅读!
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。