读取特定的XML节点

本文关键字:XML 节点 读取 | 更新日期: 2023-09-27 18:21:06

如何在XML文件中选择特定节点?

在我的第一个foreach中,我选择了Properties标记中的每个Property,但我想要一个特定的Property。例如,具有<PropertyCode>Property等于123。

XML

<Carga>
    <Properties>
       <Property>
           <PropertyCode>122</PropertyCode>
           <Fotos>
               <Foto>
               </Foto>
           </Fotos>
       </Property>
       <Property>
           <PropertyCode>123</PropertyCode>
           <Fotos>
               <Foto>
               </Foto>
           </Fotos>
       </Property>
     </Properties>
</Carga>

C#代码

// Here I get all Property tag
// But i want to take just a specific one
foreach (XmlElement property in xmldoc.SelectNodes("/Carga/Properties/Property"))
{
   foreach (XmlElement photo in imovel.SelectNodes("Fotos/Foto"))
   {
       string photoName = photo.ChildNodes.Item(0).InnerText.Trim();
       string url = photo.ChildNodes.Item(1).InnerText.Trim();
       this.DownloadImages(property_id, url, photoName );
   }
}

有人能帮我吗?

读取特定的XML节点

使用Linq来Xml:

int code = 123;
var xdoc = XDocument.Load(path_to_xml);
var property = xdoc.Descendants("Property")
                   .FirstOrDefault(p => (int)p.Element("PropertyCode") == code);
if (property != null)
{
    var fotos = property.Element("Fotos").Elements().Select(f => (string)f);
}

fotos将是字符串的集合。

您可以在XPath中使用谓词表达式来挑选特定的节点。。像这样的东西:

XmlNodeList nl = xmldoc.SelectNodes("/Carga/Properties/Property[PropertyCode='123']/Fotos/Foto");
foreach(XmlNode n in nl) { ... }

有关XPath语法的快速参考,请参阅此处:http://www.w3schools.com/xpath/xpath_syntax.asp