XDocument获取具有属性的所有节点
本文关键字:节点 属性 XDocument 获取 | 更新日期: 2023-09-27 17:57:43
我有以下XML文档:
<parameters>
<source value="mysource" />
<name value="myname" />
<id value="myid" />
</parameters>
我正在尝试使用XDocument解析这个XML,以便获得一个包含节点及其值的列表(Dictionary):
source=>mysource,name=>myname,id=>myid
关于我该怎么做有什么想法吗?
我在LINQPad中尝试过,它提供了您想要的:
string xml = @"<parameters>
<source value=""mysource"" />
<name value=""myname"" />
<id value=""myid"" />
</parameters>";
var doc = XDocument.Parse(xml);
IDictionary dict = doc.Element("parameters")
.Elements()
.ToDictionary(
d => d.Name.LocalName, // avoids getting an IDictionary<XName,string>
l => l.Attribute("value").Value);
如果您有一个包含此处显示内容的文档,这应该可以工作:
XDocument doc = ...;
var dict = doc.Root
.Elements()
.ToDictionary(
e => e.Name.ToString(),
e => e.Attribute("value").Value);
XDocument x = XDocument.Parse(
@"<parameters>
<source value=""mysource"" />
<name value=""myname"" />
<id value=""myid"" />
</parameters>");
var nodes = from elem in x.Element("parameters").Elements()
select new { key = elem.Name.LocalName, value = elem.Attribute("value").Value };
var list = new Dictionary<string, string>();
foreach(var node in nodes)
{
list.Add(node.key, node.value);
}
您可以使用xmldocument/xmtextreader对象使用这些链接来帮助
http://msdn.microsoft.com/en-us/library/c445ae5y(v=vs.80).aspx
http://www.c-sharpcorner.com/uploadfile/mahesh/readwritexmltutmellli2111282005041517am/readwritexmltutmellli21.aspx
但如果可能的话,我强烈建议使用linq-to-xml,它非常容易管理http://www.codeproject.com/KB/linq/LINQtoXML.aspx
类似的东西
XDocument doc = XDocument.Parse(xmlText);
IDictionary<string,string> dic = doc.Elements("parameters").ToDictionary(e => e.Name.LocalName, e => e.Value);
希望这能帮助
using System;
using System.Linq;
using System.Xml.Linq;
using System.Collections.Generic;
class Program{
static void Main(){
var doc = XDocument.Load("1.xml");
var result = (from node in doc.Root.Elements()
select new{ Key = node.Name, Value = node.Attribute("value").Value})
.ToDictionary(p =>p.Key, p=>p.Value);
foreach(var p in result) Console.WriteLine("{0}=>{1}", p.Key, p.Value);
}
}