访问节点内的XML元素

本文关键字:XML 元素 节点 访问 | 更新日期: 2023-09-27 18:13:29

我在一个大文件中有以下XML元素,我试图通过StayDateRange内的元素迭代,我怎么能做到这一点?我还有其他部分需要做类似的事情。

<StDteRange timeUnitType="DAY">
   <strtTime>2009-06-28T00:00:00.000</strtTime>
   <numOfUnits>4</numOfUnits>
</StDteRange >
IEnumerable<XElement> StDteRange = from el in root.Descendants(aw + "StDteRange ") 
select  el;
foreach (XElement el in StDteRange )
{
       if (el.Name.LocalName=="strtTime")
            Console.WriteLine((DateTime)el);
       if (el.Name=="numOfUnits")
            Console.WriteLine((int)el);
}

访问节点内的XML元素

网上有一些很好的例子:

Scott Guthrie's Blog - Using Linq to XML

hook On Linq - Linq to XML

你可以创建一个简单的类来保存你的结果,然后在你的linq查询中创建新的对象:

public class XMLResult()
{
    public string localname;
    public int Units;
}
IEnumerable<XMLResult> results = from el in root.Descendants(aw + "StDteRange ") 
     select new XMLResult() {
          Name = el.Element("strtTime").value,
          Units = el.Element("numOfUnits").value
     };