我在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>
答案 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。