xml 中的几个转意符号
在xml中想放入一个html代码,其中出现了点问题,html中有 "<" , ">" 符号,放在xml会出错的,要用xml转意符号:
< < less than
> > greater than
& & ampersand
' ' apostrophe
" " quotation mark
比如xml如下
<html><input type="text" name="name" size="10"/></html>要写成
<html><input type="text" name="name" size="10"/></html>
资源来自:http://lvxuehu.iteye.com/blog/166943