.net读写xml文档详解

一  .Net框架中与XML有关的命名空间

System.Xml
包含了一些和XML文档的读写操作相关的类,它们分别是:XmlReader、XmlTextReader、XmlValidatingReader、XmlNodeReader、XmlWriter、XmlTextWriter 以及 XmlNode(它的子类包括:XmlDocument、XmlDataDocument、XmlDocumentFragment)等类。

System.Xml.Schema
包含了和XML模式相关的类,这些类包括XmlSchema、XmlSchemaAll、XmlSchemaXPath以及XmlSchemaType等类。

System.Xml.Serialization
包含了和XML文档的序列化和反序列化操作相关的类。
序列化:将XML格式的数据转化为流格式的数据,并能在网络中传输;
反序列化:完成相反的操作,即将流格式的数据还原成XML格式的数据。

System.Xml.Xpath
包含了XPathDocument、XPathExression、XPathNavigator以及XPathNodeIterator等类,这些类能完成XML文档的导航功能。
(在XPathDocument类的协助下,XPathNavigator类能完成快速的XML文档导航功能,该类为程序员提供了许多Move方法以完成导航功能。)

System.Xml.Xsl
完成XSLT的转换功能。

二  写XML文档的方法

用XmlWriter类实现写操作,该类包含了写XML文档所需的方法和属性,它是XmlTextWriter类和XmlNodeWriter类的基类。

写操作的有些方法是成对出现的,比如你要写入一个元素,首先调用WriteStartElement方法—>写入实际内容—>调用WriteEndElement方法结束。

下面通过其子类 XmlTextWriter 来说明如何写XML文档。

XmlTextWriter textWriter = New XmlTextWriter("C:\\myXmFile.xml", null);

在创建完对象后,我们调用WriterStartDocument方法开始写XML文档;
在完成写工作后,就调用WriteEndDocument结束写过程,并调用Close方法将它关闭。

在写的过程中,我们可以:
调用WriteComment方法来添加说明;
通过调用WriteString方法来添加一个字符串;
通过调用WriteStartElement和WriteEndElement方法对来添加一个元素;
通过调用WriteStartAttribute和WriteEndAttribute方法对来添加一个属性;
通过调用WriteNode方法来添加整的一个节点;
其它的写的方法还包括WriteProcessingInstruction和WriteDocType等等。

下面的示例介绍如何具体运用这些方法来完成XML文档的写工作。

复制代码 代码如下:


using System;
using System.Xml; 

namespace WriteXML
{
 class Class1
 {
  static void Main( string[] args )
  {
   try
   {
    // 创建XmlTextWriter类的实例对象
    XmlTextWriter textWriter = new XmlTextWriter("C:\\w3sky.xml", null);
    textWriter.Formatting = Formatting.Indented;

// 开始写过程,调用WriteStartDocument方法
    textWriter.WriteStartDocument(); 

// 写入说明
    textWriter.WriteComment("First Comment XmlTextWriter Sample Example");
    textWriter.WriteComment("w3sky.xml in root dir");  

//创建一个节点
    textWriter.WriteStartElement("Administrator");
    textWriter.WriteElementString("Name", "formble");
    textWriter.WriteElementString("site", "w3sky.com");
    textWriter.WriteEndElement();

    // 写文档结束,调用WriteEndDocument方法
    textWriter.WriteEndDocument();

// 关闭textWriter
    textWriter.Close();
   }
   catch(System.Exception e)
   {
    Console.WriteLine(e.ToString());
   }
  }

}
}

三  读XML文档的方法

用XmlTextReader类的对象来读取该XML文档。在创建新对象的构造函数中指明XML文件的位置即可。

XmlTextReader textReader = new XmlTextReader("C:\\books.xml");

XmlTextReader 类中的属性 NodeType 可以知道其节点的节点类型。通过与枚举类型 XmlNodeType 中的元素的比较,可以获取相应节点的节点类型并对其完成相关的操作。

枚举类型 XmlNodeType 中包含了诸如XmlDeclaration、Attribute、CDATA、Element、Comment、Document、DocumentType、Entity、ProcessInstruction以及WhiteSpace等XML项的类型。

下面的示例是以读取"books.xml"文件创建对象,通过该xml对象的Name、BaseURI、Depth、LineNumber等属性来获取相关信息,并显示在控制台中。(运用VS.net开发工具附带的"books.xml"文件来作为示例)

复制代码 代码如下:


using System;
using System.Xml; 

namespace ReadXml
{
    class Class1
    {
        static void Main( string[] args )
        {
            // 创建一个XmlTextReader类的对象并调用Read方法来读取XML文件
            XmlTextReader textReader  = new XmlTextReader("C:\\books.xml");
            textReader.Read();
            // 节点非空则执行循环体
            while ( textReader.Read() )
            {
                // 读取第一个元素
                textReader.MoveToElement();
                Console.WriteLine("XmlTextReader Properties Test");
                Console.WriteLine("==================="); 

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wjzfjf.html