我有这个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>
并希望获得<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;
}
doc.Element("a");
返回null。我尝试删除该行offers
也为空。我的代码有什么问题以及如何获得price
的价值?感谢
答案 0 :(得分:5)
以某种方式获取命名空间,例如
<击>
XNameSpace a = doc.Root.GetDefaultNamespace();
击>
或者,可能更好:
XNameSpace a = doc.Root.GetNamespaceOfPrefix("a");
然后在您的查询中使用它:
// to get <a:feed>
XElement f = doc.Element(a + "feed");
您还可以从文字字符串设置名称空间,但请避免使用var
。
答案 1 :(得分:5)
以下是获取价格的正确方法:
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");
请记住,您的文档具有默认命名空间,a
也是命名空间。
答案 2 :(得分:3)
var xDoc = XDocument.Load(filename);
XNamespace ns = "http://schemas.zune.net/catalog/apps/2008/02";
var prices = xDoc
.Descendants(ns + "offer")
.Select(o => (decimal)o.Element(ns + "price"))
.ToList();
答案 3 :(得分:2)
a
是一个命名空间。要获取Feed元素,请尝试以下操作:
XDocument doc = XDocument.Parse(xmlString);
XNamespace a = "http://www.w3.org/2005/Atom";
var feed = doc.Element(a + "feed");