解析xml字符串时,XDocument.Element返回null

use*_*835 6 c# xml linq

我有这个xml字符串:

<a:feed xmlns:a="http://www.w3.org/2005/Atom" 
        xmlns:os="http://a9.com/-/spec/opensearch/1.1/"
        xmlns="http://schemas.zune.net/catalog/apps/2008/02">
    <a:link rel="self" type="application/atom+xml" href="/docs" />
    <a:updated>2014-02-12</a:updated>
    <a:title type="text">Chickens</a:title>
    <a:content type="html">eat 'em all</a:content>
    <sortTitle>Chickens</sortTitle>
    ... other stuffs
    <offers>
        <offer>
            <offerId>8977a259e5a3</offerId>
            ... other stuffs
            <price>0</price>
            ... other stuffs
        </offer>
    </offers>
    ... other stuffs
</a:feed>
Run Code Online (Sandbox Code Playgroud)

并希望获得价值,<price>但在我的代码中:

XDocument doc = XDocument.Parse(xmlString);
var a = doc.Element("a");
var offers = a.Element("offers");
foreach (var offer in offers.Descendants())
{
   var price = offer.Element("price");
   var value = price.Value;
}
Run Code Online (Sandbox Code Playgroud)

doc.Element("a");返回null.我试过删除该行offers也是null.我的代码有什么问题以及如何获得价值price?谢谢

Ser*_*kiy 6

这是获得价格的正确方法:

var xdoc = XDocument.Parse(xmlString);
XNamespace ns = xdoc.Root.GetDefaultNamespace();

var pricres = from o in xdoc.Root.Elements(ns + "offers").Elements(ns + "offer")
              select (int)o.Element(ns + "price");
Run Code Online (Sandbox Code Playgroud)

请记住,您的文档具有默认命名空间,a也是命名空间.


Hen*_*man 5

以某种方式获取命名空间,比如

XNameSpace a = doc.Root.GetDefaultNamespace();

或者,可能更好:

XNameSpace a = doc.Root.GetNamespaceOfPrefix("a");
Run Code Online (Sandbox Code Playgroud)

然后在您的查询中使用它:

// to get <a:feed>
XElement f = doc.Element(a + "feed");
Run Code Online (Sandbox Code Playgroud)

您还可以从文字字符串设置命名空间,但请避免var.