摘要:
1,读取整个xml文件,包括子元素,文本,属性。代码如下:View Code 1usingSystem;2usingSystem.Xml;34namespaceReadXMLfromFile5{6///<summary>7///SummarydescriptionforClass1.8///</summary>9classClass110{11staticvoidMain(string[]args)12{13XmlTextReaderreader=newXmlTextReader("books.xml");14while(reader.Read()) 阅读全文
摘要:
1,读取xml文件的内容显示到控制台 View Code 1stringfileName="friend.xml";2XmlDocumentdoc=newXmlDocument();3//创建一个XmlTextReader对象,读取XML数据4XmlTextReaderreader=newXmlTextReader(string.Format("{0}\\{1}",Environment.CurrentDirectory.ToString(),fileName));5reader.Read();67//载入XmlTextReader类的对象8doc.Lo 阅读全文