博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
如何完成.Net下XML文档的读写操作
阅读量:6879 次
发布时间:2019-06-27

本文共 5635 字,大约阅读时间需要 18 分钟。

本人在.Net下学习 XML 的过程中,对如何完成 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(
"
===================
");  
                
//
 读取该元素的属性并显示在控制台中
                Console.WriteLine(
"
Name:
" + textReader.Name);
                Console.WriteLine(
"
Base URI:
" + textReader.BaseURI);
                Console.WriteLine(
"
Local Name:
" + textReader.LocalName);
                Console.WriteLine(
"
Attribute Count:
" + textReader.AttributeCount.ToString());
                Console.WriteLine(
"
Depth:
" + textReader.Depth.ToString());
                Console.WriteLine(
"
Line Number:
" + textReader.LineNumber.ToString());
                Console.WriteLine(
"
Node Type:
" + textReader.NodeType.ToString());
                Console.WriteLine(
"
Attribute Count:
" + textReader.Value.ToString());
            }
        }
    }
}

四  运用XmlDocument类

XmlDocument类代表了XML文档,它能完成与整个XML文档相关的各类操作,同时和其相关的XmlDataDocument类也是非常重要的,值得深入研究。 该类包含了Load、LoadXml以及Save等重要的方法。

Load方法: 可以从一个字符串指定的XML文件或是一个流对象、一个TextReader对象、一个XmlReader对象导入XML数据。

LoadXml方法: 则完成从一个特定的XML文件导入XML数据的功能。
Save方法: 则将XML数据保存到一个XML文件中或是一个流对象、一个TextWriter对象、一个XmlWriter对象中。 
下面的示例中,用到了XmlDocument类对象的LoadXml方法,它从一个XML文档段中读取XML数据并调用其Save方法将数据保存在一个文件中。

//
 创建一个XmlDocument类的对象
XmlDocument doc = 
new XmlDocument();
doc.LoadXml((
"
<Student type='regular' Section='B'><Name>Tommy Lex</Name></Student>
"));
//
 保存到文件中
doc.Save(
"
C:\\student.xml
");
 
//
 还可以通过改变Save方法中参数,将XML数据显示在控制台中,方法如下: 
doc.Save(Console.Out);

下面的示例中,用到了一个XmlTextReader对象,通过它读取"books.xml"文件中的XML数据。然后创建一个XmlDocument对象并载入XmlTextReader对象,这样XML数据就被读到XmlDocument对象中了。最后,通过该对象的Save方法将XML数据显示在控制台中。
 

XmlDocument doc = 
new XmlDocument();
//
 创建一个XmlTextReader对象,读取XML数据
XmlTextReader reader = 
new XmlTextReader(
"
c:\\books.xml
");
reader.Read();
//
 载入XmlTextReader类的对象
doc.Load(reader);
//
 将XML数据显示在控制台中
doc.Save(Console.Out);

五  附录

<?
xml version='1.0'
?>
<!--
 This file represents a fragment of a book store inventory database 
-->
<
bookstore
>
  
<
book 
genre
="autobiography"
 publicationdate
="1981"
 ISBN
="1-861003-11-0"
>
    
<
title
>The Autobiography of Benjamin Franklin
</
title
>
    
<
author
>
      
<
first-name
>Benjamin
</
first-name
>
      
<
last-name
>Franklin
</
last-name
>
    
</
author
>
    
<
price
>8.99
</
price
>
  
</
book
>
  
<
book 
genre
="novel"
 publicationdate
="1967"
 ISBN
="0-201-63361-2"
>
    
<
title
>The Confidence Man
</
title
>
    
<
author
>
      
<
first-name
>Herman
</
first-name
>
      
<
last-name
>Melville
</
last-name
>
    
</
author
>
    
<
price
>11.99
</
price
>
  
</
book
>
  
<
book 
genre
="philosophy"
 publicationdate
="1991"
 ISBN
="1-861001-57-6"
>
    
<
title
>The Gorgias
</
title
>
    
<
author
>
      
<
first-name
>Sidas
</
first-name
>
      
<
last-name
>Plato
</
last-name
>
    
</
author
>
    
<
price
>9.99
</
price
>
  
</
book
>
</
bookstore
>

本文转自Work Hard Work Smart博客园博客,原文链接:http://www.cnblogs.com/linlf03/archive/2011/07/19/2111064.html,如需转载请自行联系原作者

你可能感兴趣的文章
OO第四阶段总结
查看>>
javascript总结02
查看>>
创建windows服务
查看>>
HTML5 入门基础
查看>>
【转载】读懂IL代码就这么简单(二)
查看>>
C++文件操作(fstream)
查看>>
用main函数传参做简单的计算器的代码
查看>>
python中struct.unpack的用法
查看>>
体绘制(Volume Rendering)概述之4:光线投射算法(Ray Casting)实现流程和代码(基于CPU的实现)...
查看>>
Python实践之(七)逻辑回归(Logistic Regression)
查看>>
PAT (Advanced Level) 1107. Social Clusters (30)
查看>>
使用Java程序调用MatLab
查看>>
什么是C++虚函数、虚函数的作用和使用方法
查看>>
Atitit.cto 与技术总监的区别
查看>>
关于【自证清白】
查看>>
手把手教你crontab排障
查看>>
订单编号
查看>>
纪念我曾经的 JAVA 姿势--转
查看>>
js 如何清除setinterval
查看>>
我为NET狂官方面试题-数据库篇答案
查看>>