使用Linq To XML,如何从下面的xml中获取space_id值(720)?
我正在阅读this,但我认为xml中的命名空间是我的绊脚石。
<r25:spaces xmlns:r25="http://www.collegenet.com/r25" pubdate="2009-05-05T12:18:18-04:00">
<r25:space id="VE1QOjRhMDAyZThhXzFfMWRkNGY4MA==" crc="" status="new">
<r25:space_id>720</r25:space_id>
<r25:space_name>SPACE_720</r25:space_name>
<r25:max_capacity>0</r25:max_capacity>
</r25:space>
</r25:spaces>
我在这里:
private int GetIDFromXML(string xml)
{
XDocument xDoc = XDocument.Parse(xml);
// hmmm....
}
答案 0 :(得分:6)
如果你只想要唯一的space_id
元素,没有查询等等:
XNamespace ns = "http://www.collegenet.com/r25";
string id = doc.Descendants(ns + "space_id")
.Single()
.Value;
(doc
为XDocument
- 或XElement
)。
答案 1 :(得分:3)
您也可以使用(我认为上面的代码稍微有点变化)
XNamespace ns = "http://www.collegenet.com/r25";
string id = doc.Descendants(ns.GetName("space_id").Single().Value;
答案 2 :(得分:0)
Jon Skeets的答案更加冗长......
string xml = @"<r25:spaces xmlns:r25=""http://www.collegenet.com/r25"" pubdate=""2009-05-05T12:18:18-04:00"">"
+ @"<r25:space id=""VE1QOjRhMDAyZThhXzFfMWRkNGY4MA=="" crc="""" status=""new"">"
+ @"<r25:space_id>720</r25:space_id>"
+ @"<r25:space_name>SPACE_720</r25:space_name>"
+ @"<r25:max_capacity>0</r25:max_capacity>"
+ @"</r25:space>"
+ @"</r25:spaces>";
XDocument xdoc = XDocument.Parse(xml);
XNamespace ns = "http://www.collegenet.com/r25";
var value = (from z in xdoc.Elements(ns.GetName("spaces"))
.Elements(ns.GetName("space"))
.Elements(ns.GetName("space_id"))
select z.Value).FirstOrDefault();