JSTL의 xml 태그를 사용하면 xml 파일을 분석하여 표시하고 중국어 잘못된 코드 문제. xml 파일은 utf-8을 사용하고 jsp는 utf-8을 사용하며 html문자 집합은 utf-8로 설정해야 합니다.
주의 깊게 분석한 결과, 명령문에 올바른 문자 세트를 지정하면 문제가 발생합니다.
<x:parse var="parsedDoc"> <c:import url="test.cxml" charEncoding="utf-8"></c:import> </x:parse> <h1>读取内容:</h1> <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 중국어 왜곡 코드를 읽고 문제를 해결한 사례에 대한 자세한 설명의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!