读取iTunes XML提要遇到麻烦

我正在尝试从http://itunes.apple.com/us/rss/topsongs/limit=10/genre=2/xml阅读XML提要.

我想访问这样的字段:

<im:price amount="1.29000" currency="USD">$1.29</im:price>
<im:releaseDate label="December 31, 1960">1960-12-31T16:00:00-07:00</im:releaseDate>

到目前为止,这是我所做的:

var xml = "http://itunes.apple.com/us/rss/topsongs/limit=10/genre=2/xml";
XmlDocument doc = new XmlDocument();
doc.Load(xml);
XmlNodeList items = doc.SelectNodes("//entry");
foreach (var item in items) {
    // Do something with item.
}

不过没有运气. items为空.为什么?我究竟做错了什么?

解决方法:

您需要创建一个名称空间管理器以将RSS以及iTunes自定义标签名称空间URI映射到短前缀(在下面的示例中为itunes和im):

var xml = "http://itunes.apple.com/us/rss/topsongs/limit=10/genre=2/xml";

XmlDocument doc = new XmlDocument();
doc.Load(xml);
var namespaceManager = new XmlNamespaceManager(doc.NameTable);
namespaceManager.AddNamespace("itunes", "http://www.w3.org/2005/Atom");
namespaceManager.AddNamespace("im", "http://itunes.apple.com/rss");

XmlNodeList items = doc.SelectNodes("//itunes:entry", namespaceManager);
foreach (XmlNode item in items)
{
    var price = item.SelectSingleNode("im:price", namespaceManager);
    var releaseDate = item.SelectSingleNode("im:releaseDate", namespaceManager);

    if (price != null)
    {
        Console.WriteLine(price.Attributes["amount"].InnerText);
    }

    if (releaseDate != null)
    {
        Console.WriteLine(releaseDate.Attributes["label"].InnerText);
    }
}

对于该特定的提要,您应该获得10个条目.

docs as well中:

If the XPath expression does not include a prefix, it is assumed that
the namespace URI is the empty namespace. If your XML includes a
default namespace, you must still use the XmlNamespaceManager and add
a prefix and namespace URI to it; otherwise, you will not get any
nodes selected. For more information, see Select Nodes Using XPath
Navigation.

或者,您可以使用与名称空间无关的XPath(从here开始):

XmlNodeList items = doc.SelectNodes("//*[local-name() = 'entry']");

最后,不确定为什么您说项目为空.它不可能是.运行原始代码时,您应该获得以下信息:

上一篇:程序员如何使用RSS订阅网站更新


下一篇:linux 常见命令 ls ps top df du