通过 LINQ to XML 解析 Atom 提要
我编写了一个代码片段,使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果
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")
orElement("{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.