XDocument.Descendants(itemName) - 查找限定名称时出现问题
我正在尝试从网站读取 XML-RSS-Feed。因此,我使用异步下载并使用 XDocument.Parse()
方法创建一个 XDocument
。
该文档的目的非常简单,如下所示:
<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 分析 - 但这次我正在为移动设备进行开发,因此需要关心性能。)
I'm trying to read a XML-RSS-Feed from a website. Therefore I use a async download and create a XDocument
with the XDocument.Parse()
Method.
The Document intends to be very simple, like this:
<root>
<someAttribute></SomeAttribute>
<item>...</item>
<item>...</item>
</root>
Now I want to read out all the items. Therefore I tried:
foreach (XElement NewsEntry in xDocument.Descendants("item"))
but this doesn't work. So I found a post in this board to use the qualified name, because there are some namespaces defined in the root element:
<?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/">
well, I tried all 3 available namespaces - nothing worked for me:
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/");
Any help would be appreciated.
(Usually I'm doing the XML-Analysis with Regex - but this time I'm developing for a mobile device, and therefore need to care about performance.)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您尚未尝试过默认命名空间 rdf 声明:
这是有道理的,因为默认命名空间中的任何元素都不需要在元素名称前面添加命名空间。
You have not tried the default namespace at the end of the
rdf
declaration:This makes sense, as any element in the default namespace will not need to have the namespace prepended to the element name.
不能直接解决 XDocument RSS 读取问题。但为什么不使用提供的 SyncminationFeed 类来加载提要呢? http://msdn.microsoft.com/en-us /library/system.servicemodel.synmination.synminationfeed.aspx
Not directly a solution to the XDocument RSS read problem. But why aren't you using the provided SyncdicationFeed class to load the feed? http://msdn.microsoft.com/en-us/library/system.servicemodel.syndication.syndicationfeed.aspx
试试这个
Try this