目前IM加載XML和我收到的錯誤:加載XML沒有無效字符錯誤
System.Xml.XmlException: ' ', hexadecimal value 0x17, is an invalid character. Line 2762, position 16.
很容易修復。只需打開xml並刪除該字符。
但我需要知道是否有可能加載XML甚至無效字符,並將其用於解析。 ,有什麼不利之處?
XML示例:
<?xml version="1.0" encoding="UTF-8"?>
<all>
<sub>
<summary>this is summary and it might have some invalid chars</summary>
</sub>
<sub>
<summary>this one is ok</summary>
</sub>
</all>
你可以**顯示**我們有問題的XML? – 2010-03-12 06:19:32
添加xml示例 – markol 2010-03-12 06:59:36