当在xml中使用大于号 “>”,小于号 “<”等字符时,会影响xml的解析,可以使用下面方法解决
1.使用转义字符
<test>
this is a < that is a >
</test>
解析出:this is a <;that is a >;
2.使用<![CDATA[ ]]>
<test>
this is a <![CDATA[<]]>;that is a <![CDATA[>]]>;
</test>
解析出:this is a <;that is a >;