码迷,mamicode.com
首页 > Windows程序 > 详细

c# 读取 XML

时间:2016-01-22 17:53:21      阅读:176      评论:0      收藏:0      [点我收藏+]

标签:

XmlDocument xmldoc = new XmlDocument();
string xmlPath = HttpContext.Server.MapPath("~/*****.xml");
xmldoc.Load(xmlPath);
XmlElement root = xmldoc.DocumentElement;
string node = root.SelectSingleNode("/images/image[@id=‘1‘]/url").InnerText;
<?xml version="1.0" encoding="utf-8" ?>
<images>
  <image id="0">
    <url>/images/0.png</url>
  </image>
  <image id="1">
    <url>/images/1.png</url>
  </image>
</images>

c# 读取 XML

标签:

原文地址:http://www.cnblogs.com/Jerrycjc/p/5151721.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!