cdata 和 xml xmlParseEntityRef: no name 错误
程序员文章站
2022-05-19 22:51:35
...
Problem:
An XML parser returns the error “xmlParseEntityRef: no name”
Cause:
There is a stray ‘&’ (ampersand character) somewhere in the XML text eg. some text & some more text
Solution:
Solution 1: Remove the ampersand.
Solution 2: Encode the ampersand (that is replace the ‘&’ character with ‘&’ ). Remember to Decode when reading the XML text.
Solution 3: Use CDATA sections (text inside a CDATA section will be ignored by the parser.) eg. <![CDATA[some text & some more text]]>
Note: ‘&’ ‘<' '>‘ will all give problems if not handled correctly.
An XML parser returns the error “xmlParseEntityRef: no name”
Cause:
There is a stray ‘&’ (ampersand character) somewhere in the XML text eg. some text & some more text
Solution:
Solution 1: Remove the ampersand.
Solution 2: Encode the ampersand (that is replace the ‘&’ character with ‘&’ ). Remember to Decode when reading the XML text.
Solution 3: Use CDATA sections (text inside a CDATA section will be ignored by the parser.) eg. <![CDATA[some text & some more text]]>
Note: ‘&’ ‘<' '>‘ will all give problems if not handled correctly.
上一篇: 音乐采集程序