通过 LINQ to XML 解析 Atom 提要

发布于 2024-09-08 23:08:10 字数 473 浏览 3 评论 0原文

我编写了一个代码片段,使用 LINQ to XML 查询从 Atom 提要(例如 SO 提要)中提取基本信息。

我想知道是否存在此代码可能失败的情况,或者是否有更优雅的方法。

感谢您的支持。

var url = @"http://stackoverflow.com/feeds";
XDocument rss = XDocument.Load(url);

var q = from i in rss.Root.Elements("{http://www.w3.org/2005/Atom}entry")
select new {
        Title = i.Element("{http://www.w3.org/2005/Atom}title").Value, 
        URL = i.Element("{http://www.w3.org/2005/Atom}link").Attribute("href").Value};

I wrote a code snippet to extract elementary information from an Atom feed (e.g. a SO feed) using a LINQ to XML query.

I'd like to know if there are be cases when this code could fail or if there are more elegant ways.

Thanks for the support.

var url = @"http://stackoverflow.com/feeds";
XDocument rss = XDocument.Load(url);

var q = from i in rss.Root.Elements("{http://www.w3.org/2005/Atom}entry")
select new {
        Title = i.Element("{http://www.w3.org/2005/Atom}title").Value, 
        URL = i.Element("{http://www.w3.org/2005/Atom}link").Attribute("href").Value};

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

嗫嚅 2024-09-15 23:08:10

如果 Element("{http://www.w3.org/2005/Atom}title")Element("{http://www.w3.org/2005/ Atom}link") 不存在,那么您将得到空引用异常。

当您在查找“href”属性而不检查它是否确实存在时,URL 行有两次失败的机会。

您应该对此进行一些检查,并决定如果这些元素或属性不存在,您要执行什么操作。

Well if Element("{http://www.w3.org/2005/Atom}title") or Element("{http://www.w3.org/2005/Atom}link") don't exist then you'll get a null reference exception.

The URL line has two chances to fail as you're looking for the "href" attribute without checking that it actually exists.

You should put some checks in for this and decide what you want to do if either of these elements or the attribute don't exist.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文