2013-05-31 69 views
9

這是XML:XML錯誤:在文檔的末尾附加內容

<?xml version="1.0" encoding="ISO-8859-1"?> 
<document> 
<name>Sample Document</name> 
<type>document</type> 
<url>http://nsc-component.webs.com/Office/Editor/new-doc.html?docname=New+Document&amp;titletype=Title&amp;fontsize=9&amp;fontface=Arial&amp;spacing=1.0&amp;text=&amp;wordcount3=0</url> 
</document> 

<document> 
<name>Sample</name> 
<type>document</type> 
<url>http://nsc-component.webs.com/Office/Editor/new-doc.html?docname=New+Document&amp;titletype=Title&amp;fontsize=9&amp;fontface=Arial&amp;spacing=1.0&amp;text=&amp;</url> 
</document> 

當我打開它,它說:This page contains the following errors: error on line 8 at column 1: Extra content at the end of the document

但是如果只有這個:

<document> 
<name>Sample</name> 
<type>document</type> 
<url>http://nsc-component.webs.com/Office/Editor/new-doc.html?docname=New+Document&amp;titletype=Title&amp;fontsize=9&amp;fontface=Arial&amp;spacing=1.0&amp;text=&amp;</url> 
</document> 

這很好。爲什麼說有這個兩個

+0

[第1欄第2行錯誤:在文檔的末尾附加內容]的可能的複製(http://stackoverflow.com/questions/4544272/error -on-line-2-at-column-1-extra-content-end-of-the-document) –

回答

27

你需要一個根節點

<?xml version="1.0" encoding="ISO-8859-1"?>  
<documents> 
    <document> 
     <name>Sample Document</name> 
     <type>document</type> 
     <url>http://nsc-component.webs.com/Office/Editor/new-doc.html?docname=New+Document&amp;titletype=Title&amp;fontsize=9&amp;fontface=Arial&amp;spacing=1.0&amp;text=&amp;wordcount3=0</url> 
    </document> 

    <document> 
     <name>Sample</name> 
     <type>document</type> 
     <url>http://nsc-component.webs.com/Office/Editor/new-doc.html?docname=New+Document&amp;titletype=Title&amp;fontsize=9&amp;fontface=Arial&amp;spacing=1.0&amp;text=&amp;</url> 
    </document> 
</documents> 
+0

哦....謝謝。 @詹姆斯 – internetgho5t

+0

不客氣。 – James

相關問題