如何在XML
文件中选择特定节点?
在我的第一个foreach
中,我选择Property
标记内的每个Properties
,但我想要一个特定的Property
。例如,Property
等于123的<PropertyCode>
。
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 );
}
}
有人可以帮助我吗?
答案 0 :(得分:2)
使用Linq to 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
将是字符串集合。
答案 1 :(得分:1)
您可以在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