如何将多个 XmlNode 从一个文档导入另一个文档?

How can i import MULTIPLE XmlNodes from one document to another?

我正在尝试将一个 Xml 文档中的 Xml 节点作为新节点添加到另一个文档中。 我的主要问题是我只能导入文档的第一个或最后一个子项,而不能导入中间的子项。我尝试导入的所有节点都具有相同的布局,但我似乎无法创建任何迭代来导入它们,因为我只能 select FirstChild 或 LastChild - 请注意这也是跨 2 种形式。

我是 Xml 的新手,但不想在 XDocument 中重新编写我的整个 Xml 文档,非常感谢任何帮助,谢谢。

代码如下:

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.Xml;
using System.Xml.Serialization;
using System.IO;

namespace XmlCreator
{
    public partial class Form_Member : Form
    {
        string MPlayID, MNick, MName, MMail, MICQ, MRemark;
        public static XmlDocument xmlMembers = null;
        static XmlNode rootNode = null;

        public Form_Member()
        {
            InitializeComponent();
        }

        private void btnAdd_Click(object sender, EventArgs e)
        {
            if (xmlMembers != null)
            {
                XmlNode member = xmlMembers.CreateElement("member");

                XmlAttribute attID = xmlMembers.CreateAttribute("id");
                attID.Value = MPlayID;
                member.Attributes.Append(attID);

                XmlAttribute attNick = xmlMembers.CreateAttribute("nick");
                attNick.Value = MNick;
                member.Attributes.Append(attNick);

                rootNode.AppendChild(member);

                XmlNode MNameNode = xmlMembers.CreateElement("name");
                MNameNode.InnerText = MName;
                member.AppendChild(MNameNode);

                XmlNode MMailNode = xmlMembers.CreateElement("email");
                MMailNode.InnerText = MMail;
                member.AppendChild(MMailNode);

                XmlNode MICQNode = xmlMembers.CreateElement("icq");
                MICQNode.InnerText = MICQ;
                member.AppendChild(MICQNode);

                XmlNode MRemarkNode = xmlMembers.CreateElement("remark");
                MRemarkNode.InnerText = MRemark;
                member.AppendChild(MRemarkNode);

                xmlMembers.Save("memberXML.xml");
                clearTextFields();
            }     
        }

        private void Form_Member_Load(object sender, EventArgs e)
        {
            xmlMembers = new XmlDocument();
            rootNode = xmlMembers.CreateElement("members");
            xmlMembers.AppendChild(rootNode);
        }
    }
}

这是我尝试导入的 Xml 文件的创建形式,我正在尝试将其导入到另一个表单,并在我尝试导入的表单上使用以下代码到.

代码如下:

    XmlNode memberNode = xmlSquad.ImportNode(Form_Member.xmlMembers.DocumentElement.FirstChild, true);
    xmlSquad.DocumentElement.AppendChild(memberNode);

总而言之,它正在导入 FirstChild,但是,我在 xmlMembers.xml 文件中从另一种形式创建了多个 memberNode,我找不到复制的方法。

任何帮助将不胜感激,谢谢。

您需要以下内容extension method

public static class XmlNodeExtensions
{
    /// <summary>
    /// Copy all child XmlNodes from the source to the destination.
    /// </summary>
    /// <param name="source">Copy children FROM this XmlNode</param>
    /// <param name="destination">Copy children TO this XmlNode</param>
    public static void CopyChildren(this XmlNode source, XmlNode destination)
    {
        if (source == null || destination == null)
            throw new ArgumentNullException();
        var doc = destination.OwnerDocument;
        if (doc == null)
            throw new InvalidOperationException("null document");
        // Clone the array to prevent infinite loops when the two nodes are from the same document.
        foreach (var child in source.ChildNodes.Cast<XmlNode>().ToArray())
        {
            var copy = doc.ImportNode(child, true);
            destination.AppendChild(copy);
        }
    }
}

然后您可以像这样使用它:

Form_Member.xmlMembers.DocumentElement.CopyChildren(xmlSquad.DocumentElement);