学习 XPath 以了解如何选择 xml 的每个特定元素。Yahoo 天气 xml 具有命名空间,因此您需要XmlNamespaceManager
作为SelectSingleNode
方法的第二个参数。此示例演示如何从<yweather:condition>
element 获取所有属性:
var xdoc = new XmlDocument();
xdoc.Load("http://xml.weather.yahoo.com/forecastrss?p=MKXX0001&u=c");
var nsmgr = new XmlNamespaceManager(xdoc.NameTable);
nsmgr.AddNamespace("yweather", "http://xml.weather.yahoo.com/ns/rss/1.0");
var _attributes = xdoc.SelectSingleNode("/rss/channel/item/yweather:condition", nsmgr).Attributes;
foreach (XmlAttribute attr in _attributes)
{
Console.WriteLine("Attribute: {0}, Value: {1}", attr.Name, attr.Value);
}