使用C#将XML节点添加到现有XML文件

时间:2014-11-03 21:05:55

标签: c# xml

我有一个我想要修改的XML文档......

 <fetch version="1.0" output-format="xml-platform" mapping="logical" distinct="false">
  <entity name="contact">
    <attribute name="fullname" />
    <attribute name="telephone1" />
    <attribute name="contactid" />
    <order attribute="fullname" descending="false" />
    <filter type = "and">
      <condition attribute="parentcustomerid" operator="eq" uiname="Tardis Communications" uitype="account" value="{BB0D0E64-C85E-E411-9405-00155D1DEA05}" />
    </filter>
  </entity>
</fetch>

我想做的是插入这个......

<filter type = "and">
<condition attribute="ownerid" operator= "eq-userid"/>
</filter>

在现有的“过滤器”标签之间。新的过滤器代码来自另一个文件(.txt)。

我意识到这可能没有意义,但是,我只是想看看是否可能。如果是这样,我可以在之后移动。

这是我尝试过的。

private void button1_Click(object sender, EventArgs e)
{
    XmlDataDocument doc = new XmlDataDocument();
    doc.Load(@"C:\Users\jellsworth\Downloads\mySampleXML.xml");
    //XmlNode node = null;
    foreach (XmlNode node in doc.SelectNodes("//filter/condition")) 
    {
        XmlElement mapNode = doc.CreateElement("filter");
        XmlAttribute newFilter = doc.CreateAttribute("lattitude");
        newFilter.Value = @"C:\Users\jellsworth\Downloads\playFilter.txt";
        mapNode.SetAttributeNode(newFilter);

        node.InsertBefore(mapNode, node.FirstChild);
    }
}

非常感谢任何指导。

1 个答案:

答案 0 :(得分:1)

尝试使用XDocument。

        // Load document
        XDocument myDoc = XDocument.Load(".\\Main.xml");

        // Select child element "entity" then select the child element of it you want which is "filter"
        XElement filterNode = myDoc.Root.Element("entity").Element("filter");

        //Example to iterate through all of the child nodes with the name condition
        foreach (var childNode in filterNode.Descendants("condition")) {
            // you could add another attribute to each of them
            childNode.SetAttributeValue("", "");
        }

        // Example element to add
        XElement newCondition = new XElement("condition");
        newCondition.SetAttributeValue("attribute", "parentcustomerid");
        newCondition.SetAttributeValue("operator", "eq");

        filterNode.Add(newCondition);
        myDoc.Save(".\\newFile.xml");

基本上,在

中将文件路径作为字符串加载文档
XDocument.Load("<pathToFile>");

选择元素并向下钻取就像设置新的 XElement myElement = myDoc.root.Element("<Child element name>");

一样简单

现在 myElement 将始终代表该节点,并且也可以通过迭代完成。要添加节点,只需调用

等任何元素
myElement.Add(<new XElement with attributes set>);

如果您需要其他部分的帮助,请告诉我,我很乐意提供帮助!