0

我们如何通过从两个 xmlnodelist 获取值来构建 xml,

例如---> Xmlnodelist1:

<D>
  <F a="1" b="2" c="3">
     <B d="4" e="5" f="6" g="7"/>
     <B d="5" e="5" f="11" g="7"/>
     <B d="6" e="5" f="23" g="8"/>
     <B d="7" e="5" f="45" g="9"/>
   </F>
</D>  

xmlnodelist2:

<Z aa="1">
       <s e="4" ee="5" ae="6"/>
       <s e="5" ee="55" ae="6"/>
       <s e="6" ee="555" ae="6"/>
       <s e="7" ee="5555" ae="6"/>
    </Z>

这里将 xmlnodelist1 中的“d”值与 xmlnodelist2 中的“e”值进行比较,并获取“g”、“f”和“ae”的值并构建一个类似 -> 的 xml

 <Root>
         <T g="7" f="45" ar="6">
         <T g="7" f="45" ar="6">
         <T g="7" f="45" ar="6">
         <T g="7" f="45" ar="6">
    </Root> 

这只是一个例子。请回复一个答案。谢谢

4

1 回答 1

0

您可以使用 Linq to Xml。下面的示例没有提供您示例的确切结果,因为我不完全理解这两个列表之间的关系,但这是一个开始:

        XElement xml1 =
            XElement.Parse("<D>" +
                            "  <F a=\"1\" b=\"2\" c=\"3\">" +
                            "     <B d=\"4\" e=\"5\" f=\"6\" g=\"7\"/>" +
                            "     <B d=\"5\" e=\"5\" f=\"11\" g=\"7\"/>" +
                            "     <B d=\"6\" e=\"5\" f=\"23\" g=\"8\"/>" +
                            "     <B d=\"7\" e=\"5\" f=\"45\" g=\"9\"/>" +
                            "  </F>" +
                            "</D>");

        XElement xml2 =
            XElement.Parse("<Z aa=\"1\">" +
                            "  <s e=\"4\" ee=\"5\" ae=\"6\"/>" +
                            "  <s e=\"5\" ee=\"55\" ae=\"6\"/>" +
                            "  <s e=\"6\" ee=\"555\" ae=\"6\"/>" +
                            "  <s e=\"7\" ee=\"5555\" ae=\"6\"/>" +
                            "</Z>");
        // I join list1 and list2 with attribute d and e
        IEnumerable<XElement> result = from list1 in xml1.Descendants("B")
                                       join list2 in xml2.Descendants("s")
                                       on list1.Attribute("d").Value equals list2.Attribute("e").Value
                                       select new XElement("T", new XAttribute("g", list1.Attribute("g").Value),
                                           new XAttribute("f", list1.Attribute("f").Value),
                                           new XAttribute("ar", list2.Attribute("ae").Value));
        var test = new XElement("Root", result);

结果是:

<Root>
  <T g="7" f="6" ar="6" />
  <T g="7" f="11" ar="6" />
  <T g="8" f="23" ar="6" />
  <T g="9" f="45" ar="6" />
</Root>
于 2013-09-03T12:24:38.847 回答