C# winform 中读取XML文件中的内容
XML中的内容-------------------<?xmlversion="1.0"encoding="utf-8"?><ntsc><time><year>2011<...
XML中的内容------------------- <?xml version="1.0" encoding="utf-8" ?><ntsc> <time> <year>2011</year> <month>1</month> <day>9</day> <Weekday /> <hour>11</hour> <minite>1</minite> <second>14</second> <Millisecond /> </time> </ntsc>---------------------------------------------如何获得呢?
展开
1个回答
2013-09-24
展开全部
你要获取什么值?
首先你要引用System.Xml
代码里面要using:
using System.Xml;
代码:
XmlDocument doc= new XmlDocument();
doc.Load("c:\\aa.xml");
string path="ntsc/time/day";
XmlNode node= doc.SelectSingleNode(path);
string text=node.InnerText;//这个就是你的要的值了.
首先你要引用System.Xml
代码里面要using:
using System.Xml;
代码:
XmlDocument doc= new XmlDocument();
doc.Load("c:\\aa.xml");
string path="ntsc/time/day";
XmlNode node= doc.SelectSingleNode(path);
string text=node.InnerText;//这个就是你的要的值了.
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询