首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > asp.net >

c# 读取xml中 单个的节点的值解决办法

2012-05-30 
c# 读取xml中 单个的节点的值?xml version1.0 encodingutf-8 ?shenheshenhesvalue1/value

c# 读取xml中 单个的节点的值
<?xml version="1.0" encoding="utf-8" ?>
<shenhe>
  <shenhes>
  <value>1</value>
  </shenhes>
</shenhe>
c# 读取xml中 单个的节点的值 如上面所示 如何读到那个1
请大大们 给我写详细点 什么引用啊 注释啊 我很笨 大家费心

[解决办法]
XmlDocument xmlDoc=new XmlDocument();
xmlDoc.Load(@"文件路径");
Xmlnode node=xmlDoc.SelectSingleNode(@"/shenhe/shenhes/value");
输出:node.InnerXml;

开头using System.Xml;

热点排行