linq 读取xml_.NET_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > .NET > linq 读取xml

linq 读取xml

 2015/1/14 15:29:03  胡超  程序员俱乐部  我要评论(0)
  • 摘要:xml文件如下:<?xmlversion="1.0"encoding="utf-8"?><nodes><node><项目类型>农用地转用</项目类型></node></nodes>相关的代码如下:stringxmlPath=Application.StartupPath+@"\config.xml";XDocumentxd=XDocument.Load(xmlPath);stringxmlx=""
  • 标签:XML

xml 文件如下:

<?xml version="1.0" encoding="utf-8" ?>
<nodes>
<node>
<项目类型>农用地转用</项目类型>
</node>
</nodes>

 

相关的代码如下:

class="brush:csharp;gutter:true;">string xmlPath = Application.StartupPath + @"\config.xml";
XDocument xd = XDocument.Load(xmlPath);
string xmlx = "";
foreach (XElement item in xd.Root.Descendants("node"))//得到每一个node节点,得到这个节点再取他的xmlx的这个节点
{
xmlx=item.Element("项目类型").Value;
}

  

 

发表评论
用户名: 匿名