需要C#LINQ帮助阅读XML

时间:2012-11-04 22:15:32

标签: c# linq-to-xml

我的xml看起来像下面的内容。我可以阅读标题,但无法访问媒体网址:内容。有什么建议?我的非工作c#低于xml。

 XNamespace xmlns = "http://www.w3.org/2005/Atom";
        var names =
            (from data in         XDocument.Load("http://channel9.msdn.com/Events/Build/2012/rss").Descendants("item")
             let xElement = data.Element("title")
             let xElementUrls = data.Element("media")
             where xElement != null
             select new
                        {
                           Title = xElement.Value,
                           Urls = data.Elements(xmlns + "media:group")
                           //MediaGroup = data.Element("media:group")
                        }).ToList();

和XML:

    <?xml-stylesheet type="text/xsl" media="screen" href="/styles/xslt/rss.xslt"?>
    <rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" 
       xmlns:atom="http://www.w3.org/2005/Atom" 
       xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" 
       xmlns:wfw="http://wellformedweb.org/CommentAPI/" 
       xmlns:slash="http://purl.org/rss/1.0/modules/slash/" 
       xmlns:media="http://search.yahoo.com/mrss/" 
       xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" 
       xmlns:c9="http://channel9.msdn.com">
    <channel>

    <item>
      <title>Building Windows 8 LOB Apps (Repeat)</title>
        <media:group>
          <media:content url="http://video.ch9.ms/sessions/build/2012/2-104R.mp4" 
             expression="full" duration="0" fileSize="1" type="video/mp4" medium="video"/>
          <media:content url="http://video.ch9.ms/sessions/build/2012/2-104R.wmv" 
             expression="full" duration="0" fileSize="1" type="video/x-ms-wmv" medium="video"/>
        </media:group>
    </item>
    <item>
    <item>
    ...
    </item>
  • 根据L.B.的建议添加了这个,但我无法弄清楚如何获取网址(它现在按预期返回每个项目的URL列表。

    var items = xDoc.Descendants("item")
        .Where(g => g.Element(media + "group") != null)
        .Select(g => new {
                        Title = g.Element("title").Value,
                        Url = g.Element(media + "group")
                                .Element(media + "content")
                                .Attribute("url").Value
                        })
        .ToList();
    

3 个答案:

答案 0 :(得分:2)

var xDoc = XDocument.Load("http://channel9.msdn.com/Events/Build/2012/rss");
XNamespace media = "http://search.yahoo.com/mrss/";

var items = xDoc.Descendants("item")
            .Where(g => g.Element(media + "group") != null)
            .Select(g => new {
                            Title = g.Element("title").Value,
                            Url = g.Element(media + "group")
                                    .Element(media + "content")
                                    .Attribute("url").Value
                            })
            .ToList();

答案 1 :(得分:1)

media是名称空间别名,而不是元素。

您需要在group命名空间中获取http://search.yahoo.com/mrss/元素:

XNamespace m = "http://search.yahoo.com/mrss/";


let xElementUrls = data.Element(m + "group")

答案 2 :(得分:1)

你的命名空间错误......

XNamespace xmlns = "http://www.w3.org/2005/Atom";

应该是

XNamespace xmlns = "http://search.yahoo.com/mrss/";

您正在错误地组合命名空间和元素名称

...
Urls = data.Elements(xmlns + "group")
....