转自:http://blog.csdn.net/clementad/article/details/46314745
解决方法:加上 <!DOCTYPE xml>
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE xml>
<ROOT>
<goods>
<isin>SN100001</isin>
<quantity>1100</quantity>
<price>200.20</price>
<customer>张三</customer>
</goods>
</ROOT>
DOCTYPE 声明为文档提供一个空间,通过引用外部文件、通过直接声明或通过这两种方式来标识其根元素和文档类型定义 (DTD)。
如果文档要在验证环境中进行处理,DOCTYPE 声明是必选项。 要生效,DOCTYPE 声明必须标识与文档的文档结构对应的 DTD。 非验证分析器将接受没有 DOCTYPE 声明的文档。