XML解析错误:文档末尾的额外内容

时间:2011-11-18 21:04:39

标签: xml parsing

我在xml文件中收到此错误:XML Parsing error: Extra content at the end of the document

我正在使用Notepad ++,它在标题标记<ABC BLAH>hello</ABC BLAH>中显示红色的第二个单词 - 它以红色显示 BLAH 。因此,我假设问题出现在标头标签的空白处,并在该行引发验证错误。我该如何解决这个问题?

这是xml文件:

<?xml version="1.0" encoding="UTF-8"?>
<rows>
    <row>
        <Order>1</Order>
        <Requirements>ABC</Requirements>
        <Testing Procedures>blah blah </Testing Procedures> 
        <Assessment Observations / Comments>blah blah</Assessment Observations / Comments> <-- throws Parsing error at this line.
    </row>
</rows>

1 个答案:

答案 0 :(得分:6)

<Testing Procedures="">blah blah </Testing Procedures>

元素名称中不能包含空格。

<Assessment Observations="" / Comments>blah blah</Assessment Observations / Comments>

这也有多个错误。也许你是这个意思? :

<?xml version="1.0" encoding="UTF-8"?>
<rows>
  <row>
    <Order>1</Order>
    <Requirements>ABC</Requirements>
    <TestingProcedures foo=" ">blah blah </TestingProcedures>
    <Assessment Observations="/ Comments>blah blah"/>
    <Assessment Observations=" / Comments"/>
  </row>
</rows>

您有多个错误。无法真正说出你想要做什么。

确定.xml 101:

XML不允许元素名称中的空格。

如果不关闭元素名称,可以指定这样的属性。

<foo bar="I am an attribute" lol="Me too"> Here you can specify text, or other elements </foo>

此外,如果元素不包含另一个元素或文本,则可以使用简写符号

<foo attribute="bar"/>

我建议你为此阅读一些基本的tutorial