将xml文档附加到现有xml doc的底部

时间:2012-02-13 10:27:01

标签: c# xml

我有一个xml文档,想要在其底部添加另一个xml。使用.NET中的xml类,最快的方法是什么(在3.5中)?

由于

4 个答案:

答案 0 :(得分:1)

最快,最快,最简单?例如:

XDocument doc1 = XDocument.Load(...);
XDocument doc2 = XDocument.Load(...);

// Copy the root element of doc2 to the end of doc1
doc1.Root.Add(doc2.Root);
doc1.Save(...);

或者,可能希望

// Copy the *contents* of the root element of doc2 to the end of doc1
doc1.Root.Add(doc2.Root.Descendants());

如果您可以更准确地了解您的要求,我们可以提供更多帮助。请注意,XML文档只能有一个根元素,因此您不能只放置一个文档。

答案 1 :(得分:1)

我怀疑您是否可以使用XML类来完成此操作。 XML库通常旨在保护您免于创建格式不良的XML,并且两个XML文档的串联将很难形成,因为文档节点将具有两个子元素。

如果.Net库确实允许你这样做,我建议你把它作为一个错误。

答案 2 :(得分:0)

var xml = new XmlDocument();
xml.AppendChild(...);
xml.PrependChild(...);

答案 3 :(得分:0)

如果您确实想要添加第二个根节点,最快的方法是逐行读取第一个文件并将其添加到第二个文件中。这是一种非常肮脏的方式,你会得到一个无效的 xml文件!

System.IO.StreamWriter file1 = System.IO.File.AppendText(path);
System.IO.StreamReader file2 = new System.IO.StreamReader(path2)

while(!file2.EndOfStream)
{
    file1.WriteLine(file2.ReadLine());
}

file1.Close();
file2.Close();

我甚至不喜欢这个解决方案!