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

readxml如何读取

2012-05-16 
readxml怎么读取?xml文件:XML code?xml version1.0 encodingutf-8 ? mai xmlalint2/mai 如

readxml怎么读取?
xml文件:

XML code
<?xml version="1.0" encoding="utf-8" ?> <mai xmlal="int">2</mai> 


如何用dataset.readxml读取那个mai的2。

[解决办法]
C# code
 string xmlFilename = "XmlDocument.xml";    // Use WriteXml to write the document.    OriginalDataSet.WriteXml(xmlFilename);    // Dispose of the original DataSet.    OriginalDataSet.Dispose();    // Create a new DataSet.    DataSet newDataSet = new DataSet("New DataSet");    // Read the XML document into the DataSet.    newDataSet.ReadXml(xmlFilename);
[解决办法]
顶楼上,msdn有例子
[解决办法]
XmlDocument xmlDoc=new XmlDocument();
xmlDoc.Load(@"路径");
用xmlDoc.DocumentElement.InnerXml得到。

热点排行