xml 中的几个回心符号

xml 中的几个转意符号在xml中想放入一个html代码,其中出现了点问题,html中有 , 符号,放在xml会出

xml 中的几个转意符号
在xml中想放入一个html代码,其中出现了点问题,html中有 "<" , ">" 符号,放在xml会出错的,要用xml转意符号:
&lt; < less than
&gt; > greater than
&amp; & ampersand 
&apos; ' apostrophe
&quot; " quotation mark



比如xml如下

<html><input type="text" name="name" size="10"/></html>要写成

<html>&lt;input type="text" name="name" size="10"/&gt;</html>

资源来自:http://lvxuehu.iteye.com/blog/166943