您的位置:首页 > 编程语言 > C#

用C#读取XML指定节点下的值

2014-04-29 13:33 302 查看
<Employees>
<Employee name="李宇秋" age="23">
<Address>
长江路178号
</Address>
<Department>
演唱部
</Department>
</Employee>
<Employee name="曾不可" age="24">
<Address>
火星路239号
</Address>
<Department>
舞蹈部
</Department>
</Employee>
<Employee name="张学敌" age="27">
<Address>
香港街13号
</Address>
<Department>
偶像部
</Department>
</Employee>
</Employees>

要获取 name="曾不可" 的节点下面的 Address 节点的值“火星路239号”,C#如何实现?

OK,在linq之前,可以试用XMLDocment将xml整个文件读进来,然后比如可以用xpath再进行分析。

自从有了linq,一切都变得简单了,实现代码如下:
view sourceprint?

//假设以上xml我们保存在一个本地xml文件 D:\Microsoft Work\XMLPath\sampleXML.xml 中
public List<string> GetXMLResult()
{
XElement xelement = XElement.Parse(@"D:\Microsoft Work\XMLPath\sampleXML.xml");
var query = xelement.Descendants("Employee").Where(x => x.Attribute("name").Value == "曾不可").Select(x => x.Element("Address").Value);
if (query != null && query.Count() > 0)
return query.ToList<string>();

return null;
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: