发现无效的XML字符(Unicode:0xc)

使用Java DOM解析器解析XML文件将导致:

[Fatal Error] os__flag_8c.xml:103:135: An invalid XML character (Unicode: 0xc) was found in the element content of the document.

org.xml.sax.SAXParseException: An invalid XML character (Unicode: 0xc) was found in the element content of the document.

at com.sun.org.apache.xerces.internal.parsers.DOMParser.parse(Unknown Source)

at com.sun.org.apache.xerces.internal.jaxp.DocumentBuilderImpl.parse(Unknown Source)

at javax.xml.parsers.DocumentBuilder.parse(Unknown Source)

回答:

即使将数据封装在CDATA块中,XML文档中也不允许使用一些字符。

如果生成了文档,则需要对文档进行 实体编码或 剥离。如果您有错误的文档,则应先删除这些字符,然后再尝试对其进行解析。

请参阅此线程中的dolmens答案:XML中的无效字符

他链接到本文的位置:http :

//www.w3.org/TR/xml/#charsets

基本上,除0x9(TAB),0xA(CR?),0xD(LF?)外,所有0x20以下的字符都是不允许的

以上是 发现无效的XML字符(Unicode:0xc) 的全部内容, 来源链接: utcz.com/qa/431034.html

回到顶部