xml转document问题

前端之家收集整理的这篇文章主要介绍了xml转document问题前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

1.The markup in the document following the root element must be well-formed,

如:

String xmlString = "<?xml version='1.0' encoding='utf-8'?>"

我的问题是组装的xml,组节点后面没有加\n(回车)

改成:String xmlString = "<?xml version='1.0' encoding='utf-8'?>\n"


2.White space is required between the processing instruction target and data.
如: String xml="<?xmlversion='1.0' encoding='utf-8'?>"
这个是因为xml 与version 之间没有空格
改成:String xmlString = "<?xml version='1.0' encoding='utf-8'?>\n"
原文链接:https://www.f2er.com/xml/295347.html

猜你在找的XML相关文章