3

我正在尝试从网站读取 XML-RSS-Feed。因此我使用异步下载并使用XDocument方法创建一个XDocument.Parse()

该文档打算非常简单,如下所示:

<root>
  <someAttribute></SomeAttribute>
  <item>...</item>
  <item>...</item>
</root>

现在我想读出所有的项目。因此我尝试了:

foreach (XElement NewsEntry in xDocument.Descendants("item"))

但这不起作用。所以我在这个板子里找到了一个帖子使用限定名,因为在根元素中定义了一些命名空间:

<?xml version="1.0" encoding="ISO-8859-1" ?> 
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns="http://purl.org/rss/1.0/">

好吧,我尝试了所有 3 个可用的命名空间 - 对我没有任何帮助:

XName itemName = XName.Get("item", "http://www.w3.org/1999/02/22-rdf-syntax-ns#");
XName itemName2 = XName.Get("item", "http://purl.org/dc/elements/1.1/");
XName itemName3 = XName.Get("item", "http://purl.org/rss/1.0/modules/syndication/");

任何帮助,将不胜感激。(通常我正在使用 Regex 进行 XML 分析 - 但这次我正在为移动设备开发,因此需要关心性能。)

4

3 回答 3

4

您还没有在声明末尾尝试默认命名空间:rdf

xmlns="http://purl.org/rss/1.0/"

这是有道理的,因为默认命名空间中的任何元素都不需要将命名空间附加到元素名称之前。

于 2010-10-13T13:43:48.370 回答
2

不能直接解决 XDocument RSS 读取问题。但是你为什么不使用提供的 SyncdicationFeed 类来加载提要呢?http://msdn.microsoft.com/en-us/library/system.servicemodel.syndication.syndicationfeed.aspx

于 2010-10-13T13:49:34.430 回答
0

尝试这个

var elements = from p in xDocument.Root.Elements()
where p.Name.LocalName == "item"
select p;

foreach(var element in elements)
{
//Do stuff
}
于 2010-10-13T13:52:21.123 回答