的xml文件的根节点

的xml文件的根节点

本文介绍了使用asp.net C#的xml文件的根节点的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有不带根标记的xml文件,并且我已经使用stringbuilder,xmltextwriter生成了此文件.

I have xml file without root tag & I have used stringbuilder,xmltextwriter to generate this file.
how to set start root tag& end root tag for this.

推荐答案

<!-- this is NOT XML: -->
<a>First node</a>
<b>Second node</b>



将其加载到任何Web浏览器中,以进行简单测试.这是一个典型的结果:



Load it in any Web browser, for a simple test. This is a typical result:

XML Parsing Error: junk after document element
Location: [...]
Line Number 2, Column 1:<b>Second node</b>
^



而已.算了.

—SA



That''s it. Forget it.

—SA


这篇关于使用asp.net C#的xml文件的根节点的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-20 12:13