知识大全 在VisualC#中使用XML指南之读取XML

Posted

篇首语:你不勇敢,没人替你坚强。本文由小常识网(cha138.com)小编为大家整理,主要介绍了知识大全 在VisualC#中使用XML指南之读取XML相关的知识,希望对你有一定的参考价值。

在VisualC#中使用XML指南之读取XML  以下文字资料是由(全榜网网www.cha138.com)小编为大家搜集整理后发布的内容,让我们赶快一起来看一下吧!

对于XML 想必各位都比较了解 我也就不用费笔墨来描述它是什么了 我想在未来的Web开发中XML一定会大放异彩 XML是可扩展标记语言 使用它企业可以制定一套自己的数据格式 数据按照这种格式在网络中传输然后再通过XSLT将数据转换成用户期望的样子表示出来 这样便轻易的解决了数据格式不兼容的问题 用于Internet的数据传输 我想 这是XML对于我们这些程序员最诱人的地方!   我们今天的主题不是论述XML的好处 而是讨论在C#中如何使用XML 下面我们来了解一下使用程序访问XML的一些基础理论知识   访问的两种模型   在程序中访问进而操作XML文件一般有两种模型 分别是使用DOM(文档对象模型)和流模型 使用DOM的好处在于它允许编辑和更新XML文档 可以随机访问文档中的数据 可以使用XPath查询 但是 DOM的缺点在于它需要一次性的加载整个文档到内存中 对于大型的文档 这会造成资源问题 流模型很好的解决了这个问题 因为它对XML文件的访问采用的是流的概念 也就是说 任何时候在内存中只有当前节点 但它也有它的不足 它是只读的 仅向前的 不能在文档中执行向后导航操作 虽然是各有千秋 但我们也可以在程序中两者并用实现优劣互补嘛 呵呵 这是题外话了!我们今天主要讨论XML的读取 那我们就详细讨论一下流模型吧!  流模型中的变体   流模型每次迭代XML文档中的一个节点 适合于处理较大的文档 所耗内存空间小 流模型中有两种变体—— 推 模型和 拉 模型   推模型也就是常说的SAX SAX是一种靠事件驱动的模型 也就是说 它每发现一个节点就用推模型引发一个事件 而我们必须编写这些事件的处理程序 这样的做法非常的不灵活 也很麻烦    NET中使用的是基于 拉 模型的实现方案 拉 模型在遍历文档时会把感兴趣的文档部分从读取器中拉出 不需要引发事件 允许我们以编程的方式访问文档 这大大的提高了灵活性 在性能上 拉 模型可以选择性的处理节点 而SAX每发现一个节点都会通知客户机 从而 使用 拉 模型可以提高Application的整体效率 在 NET中 拉 模型是作为XmlReader类实现的 下面看一下该类的继承结构   我们今天来讲一下该体系结构中的XmlTextReader类 该类提供对Xml文件进行读取的功能 它可以验证文档是否格式良好 如果不是格式良好的Xml文档 该类在读取过程中将会抛出XmlException异常 可使用该类提供的一些方法对文档节点进行读取 筛选等操作以及得到节点的名称和值 请牢记 XmlTextReader是基于流模型的实现 打个不恰当的比喻 XML文件就好象水源 闸一开水就流出 流过了就流过了不会也不可以往回流 内存中任何时候只有当前节点 你可以使用XmlTextReader类的Read()方法读取下一个节点 好了 说了这么多来看一个例子 编程要注重实际对吧 看代码前先看下运行效果吧!   Example 按纽遍历文档读取数据 Example Example 按纽得到节点类型 Example 过滤文档只获得数据内容 Example 得到属性节点 Example 按纽得到命名空间 Example 显示整个XML文档 为此 我专门写一个类来封装以上功能 该类代码如下 // //XmlReader类用于Xml文件的一般读取操作 以下对这个类做简单介绍 ////Attributes(属性)://listBox: 设置该属性主要为了得到客户端控件以便于显示所读到的文件的内容(这里是ListBox控件)//xmlPath: 设置该属性为了得到一个确定的Xml文件的绝对路径////Basilic Using(重要的引用)://System Xml: 该命名空间中封装有对Xml进行操作的常用类 本类中使用了其中的XmlTextReader类//XmlTextReader: 该类提供对Xml文件进行读取的功能 它可以验证文档是否格式良好 如果不是格式 // 良好的Xml文档 该类在读取过程中将会抛出XmlException异常 可使用该类提供的// 一些方法对文档节点进行读取 筛选等操作以及得到节点的名称和值////bool XmlTextReader Read(): 读取流中下一个节点 当读完最后一个节点再次调用该方法该方法返回false//XmlNodeType XmlTextReader NodeType: 该属性返回当前节点的类型// XmlNodeType Element 元素节点// XmlNodeType EndElement 结尾元素节点// XmlNodeType XmlDeclaration 文档的第一个节点// XmlNodeType Text 文本节点//bool XmlTextReader HasAttributes: 当前节点有没有属性 返回true或false//string XmlTextReader Name: 返回当前节点的名称//string XmlTextReader Value: 返回当前节点的值//string XmlTextReader LocalName: 返回当前节点的本地名称//string XmlTextReader NamespaceURI: 返回当前节点的命名空间URI//string XmlTextReader Prefix: 返回当前节点的前缀//bool XmlTextReader MoveToNextAttribute(): 移动到当前节点的下一个属性// namespace XMLReading using System; using System Xml; using System Windows Forms; using System ComponentModel; /// <summary> /// Xml文件读取器 /// </summary> public class XmlReader : IDisposable   private string _xmlPath;  private const string _errMsg = Error Occurred While Reading ;  private ListBox _listBox;  private XmlTextReader xmlTxtRd;  #region XmlReader 的构造器  public XmlReader()     this _xmlPath = string Empty;   this _listBox = null;   this xmlTxtRd = null;    /// <summary>  /// 构造器  /// </summary>  /// <param name= _xmlPath >xml文件绝对路径</param>  /// <param name= _listBox >列表框用于显示xml</param>  public XmlReader(string _xmlPath ListBox _listBox)     this _xmlPath = _xmlPath;   this _listBox = _listBox;   this xmlTxtRd = null;    #endregion  #region XmlReader 的资源释放方法  /// <summary>  /// 清理该对象所有正在使用的资源  /// </summary>  public void Dispose()     this Dispose(true);   GC SuppressFinalize(this);    /// <summary>  /// 释放该对象的实例变量  /// </summary>  /// <param name= disposing ></param>  protected virtual void Dispose(bool disposing)     if (!disposing)    return;   if (this xmlTxtRd != null)       this xmlTxtRd Close();    this xmlTxtRd = null;      if (this _xmlPath != null)       this _xmlPath = null;       #endregion   #region XmlReader 的属性  /// <summary>  /// 获取或设置列表框用于显示xml  /// </summary>  public ListBox listBox     get       return this _listBox;      set       this _listBox = value;       /// <summary>  /// 获取或设置xml文件的绝对路径  /// </summary>  public string xmlPath     get       return this _xmlPath;      set       this _xmlPath = value;       #endregion  /// <summary>  /// 遍历Xml文件  /// </summary>  public void EachXml()     this _listBox Items Clear();   this xmlTxtRd = new XmlTextReader(this _xmlPath);   try       while(xmlTxtRd Read())          this _listBox Items Add(this xmlTxtRd Value);          catch(XmlException exp)       throw new XmlException(_errMsg + this _xmlPath + exp ToString());      finally       if (this xmlTxtRd != null)     this xmlTxtRd Close();       /// <summary>  /// 读取Xml文件的节点类型  /// </summary>  public void ReadXmlByNodeType()     this _listBox Items Clear();   this xmlTxtRd = new XmlTextReader(this _xmlPath);   try       while(xmlTxtRd Read())         this _listBox Items Add(this xmlTxtRd NodeType ToString());          catch(XmlException exp)       throw new XmlException(_errMsg + this _xmlPath + exp ToString());      finally       if (this xmlTxtRd != null)     this xmlTxtRd Close();       /// <summary>  /// 根据节点类型过滤Xml文档  /// </summary>  /// <param name= xmlNType >XmlNodeType 节点类型的数组</param>  public void FilterByNodeType(XmlNodeType[] xmlNType)     this _listBox Items Clear();   this xmlTxtRd = new XmlTextReader(this _xmlPath);   try       while(xmlTxtRd Read())         for (int i = ; i < xmlNType Length; i++)           if (xmlTxtRd NodeType == xmlNType[i])             this _listBox Items Add(xmlTxtRd Name + is Type + xmlTxtRd NodeType ToString());                     catch(XmlException exp)       throw new XmlException(_errMsg + this xmlPath + exp ToString());      finally       if (this xmlTxtRd != null)     this xmlTxtRd Close();       /// <summary>  /// 读取Xml文件的所有文本节点值  /// </summary>  public void ReadXmlTextValue()     this _listBox Items Clear();   this xmlTxtRd = new XmlTextReader(this _xmlPath);   try       while(xmlTxtRd Read())         if (xmlTxtRd NodeType == XmlNodeType Text)           this _listBox Items Add(xmlTxtRd Value);               catch(XmlException xmlExp)       throw new XmlException(_errMsg + this _xmlPath + xmlExp ToString());      finally       if (this xmlTxtRd != null)     this xmlTxtRd Close();       /// <summary>  /// 读取Xml文件的属性  /// </summary>  public void ReadXmlAttributes()     this _listBox Items Clear();   this xmlTxtRd = new XmlTextReader(this _xmlPath);   try       while(xmlTxtRd Read())         if (xmlTxtRd NodeType == XmlNodeType Element)           if (xmlTxtRd HasAttributes)             this _listBox Items Add( The Element + xmlTxtRd Name + has + xmlTxtRd AttributeCount + Attributes );       this _listBox Items Add( The Attributes are: );       while(xmlTxtRd MoveToNextAttribute())               this _listBox Items Add(xmlTxtRd Name + = + xmlTxtRd Value);                   else             this _listBox Items Add( The Element + xmlTxtRd Name + has no Attribute );            this _listBox Items Add( );               catch(XmlException xmlExp)       throw new XmlException(_errMsg + this _xmlPath + xmlExp ToString());      finally       if (this xmlTxtRd != null)     this xmlTxtRd Close();       /// <summary>  /// 读取Xml文件的命名空间  /// </summary>  public void ReadXmlNamespace()     this _listBox Items Clear();   this xmlTxtRd = new XmlTextReader(this _xmlPath);   try       while(xmlTxtRd Read())         if (xmlTxtRd NodeType == XmlNodeType Element && xmlTxtRd Prefix != )           this _listBox Items Add( The Prefix + xmlTxtRd Prefix + is associated with namespace + xmlTxtRd NamespaceURI);      this _listBox Items Add( The Element with the local name + xmlTxtRd LocalName + is associated with + the namespace + xmlTxtRd NamespaceURI);          if (xmlTxtRd NodeType == XmlNodeType Element && xmlTxtRd HasAttributes)           while(xmlTxtRd MoveToNextAttribute())             if (xmlTxtRd Prefix != )               this _listBox Items Add( The Prefix + xmlTxtRd Prefix + is associated with namespace + xmlTxtRd NamespaceURI);        this _listBox Items Add( The Attribute with the local name + xmlTxtRd LocalName + is associated with the namespace + xmlTxtRd NamespaceURI);                            catch(XmlException xmlExp)       throw new XmlException(_errMsg + this _xmlPath + xmlExp ToString());      finally       if (this xmlTxtRd != null)     this xmlTxtRd Close();       /// <summary>  /// 读取整个Xml文件  /// </summary>  public void ReadXml()     string attAndEle = string Empty;   this _listBox Items Clear();   this xmlTxtRd = new XmlTextReader(this _xmlPath);   try       while(xmlTxtRd Read())         if (xmlTxtRd NodeType == XmlNodeType XmlDeclaration)      this _listBox Items Add(string Format( <? ?> xmlTxtRd Name xmlTxtRd Value));     else if (xmlTxtRd NodeType == XmlNodeType Element)           attAndEle = string Format( < xmlTxtRd Name);      if (xmlTxtRd HasAttributes)             while(xmlTxtRd MoveToNextAttribute())               attAndEle = attAndEle + string Format( = xmlTxtRd Name xmlTxtRd Value);                   attAndEle = attAndEle Trim() + > ;      this _listBox Items Add(attAndEle);          else if (xmlTxtRd NodeType == XmlNodeType EndElement)      this _listBox Items Add(string Format( </ > xmlTxtRd Name));     else if (xmlTxtRd NodeType == XmlNodeType Text)      this _listBox Items Add(xmlTxtRd Value);          catch(XmlException xmlExp)       throw new XmlException(_errMsg + this _xmlPath + xmlExp ToString());      finally       if (this xmlTxtRd != null)     this xmlTxtRd Close();        窗体代码如下 namespace XMLReadingusing System;using System Drawing;using System Collections;using System ComponentModel;using System Windows Forms;using System Data;using System Xml;public class Form : System Windows Forms Formprivate System Windows Forms ListBox listBox ;private System Windows Forms Button button ;private System Windows Forms Button button ;private System Windows Forms Button button ;private System Windows Forms Button button ;private System Windows Forms Button button ;private System Windows Forms Button button ;private System Windows Forms Button button ;private string xmlPath;private XmlReader xRead;/// <summary>/// 必需的设计器变量 /// </summary>private System ComponentModel Container ponents = null;public Form ()InitializeComponent();/// <summary>/// 清理所有正在使用的资源 /// </summary>protected override void Dispose( bool disposing )if( disposing )if (ponents != null) ponents Dispose();base Dispose( disposing );#region Windows 窗体设计器生成的代码/// <summary>/// 设计器支持所需的方法 不要使用代码编辑器修改/// 此方法的内容 /// </summary>private void InitializeComponent()this listBox = new System Windows Forms ListBox();this button = new System Windows Forms Button();this button = new System Windows Forms Button();this button = new System Windows Forms Button();this button = new System Windows Forms Button();this button = new System Windows Forms Button();this button = new System Windows Forms Button();this button = new System Windows Forms Button();this SuspendLayout();// // listBox // this listBox Anchor = ((System Windows Forms AnchorStyles)((((System Windows Forms AnchorStyles Top | System Windows Forms AnchorStyles Bottom) | System Windows Forms AnchorStyles Left) | System Windows Forms AnchorStyles Right)));this listBox ItemHeight = ;this listBox Location = new System Drawing Point( );this listBox Name = listBox ;this listBox Size = new System Drawing Size( );this listBox TabIndex = ;// // button // this button Anchor = ((System Windows Forms AnchorStyles)((System Windows Forms AnchorStyles Bottom | System Windows Forms AnchorStyles Left)));this button Location = new System Drawing Point( );this button Name = button ;this button TabIndex = ;this button Text = Example ;this button Click += new System EventHandler(this button _Click);// // button // this button Anchor = ((System Windows Forms AnchorStyles)((System Windows Forms AnchorStyles Bottom | System Windows Forms AnchorStyles Left)));this button Location = new System Drawing Point( );this button Name = button ;this button TabIndex = ;this button Text = Example ;this button Click += new System EventHandler(this button _Click);// // button // this button Anchor = ((System Windows Forms AnchorStyles)((System Windows Forms AnchorStyles Bottom | System Windows Forms AnchorStyles Right)));this button Location = new System Drawing Point( );this button Name = button ;this button TabIndex = ;this button Text = Example ;this button Click += new System EventHandler(this button _Click);// // button // this button Anchor = ((System Windows Forms AnchorStyles)((System Windows Forms AnchorStyles Bottom | System Windows Forms AnchorStyles Left)));this button Location = new System Drawing Point( );this button Name = button ;this button TabIndex = ;this button Text = Example ;this button Click += new System EventHandler(this button _Click);// // button // this button Anchor = ((System Windows Forms AnchorStyles)((System Windows Forms AnchorStyles Bottom | System Windows Forms AnchorStyles Left)));this button Location = new System Drawing Point( );this button Name = button ;this button TabIndex = ;this button Text = Example ;this button Click += new System EventHandler(this button _Click);// // button // this button Anchor = ((System Windows Forms AnchorStyles)((System Windows Forms AnchorStyles Bottom | System Windows Forms AnchorStyles Left)));this button Location = new System Drawing Point( );this button Name = button ;this button TabIndex = ;this button Text = Example ;this button Click += new System EventHandler(this button _Click);// // button // this button Anchor = ((System Windows Forms AnchorStyles)((System Windows Forms AnchorStyles Bottom | System Windows Forms AnchorStyles Left)));this button Location = new System Drawing Point( );this button Name = button ;this button TabIndex = ;this button Text = Example ;this button Click += new System EventHandler(this button _Click);// // Form // this AutoScaleBaseSize = new System Drawing Size( );this ClientSize = new System Drawing Size( );this Controls Add(this button );this Controls Add(this button );this Controls Add(this button );this Controls Add(this button );this Controls Add(this button );this Controls Add(this button );this Controls Add(this button );this Controls Add(this listBox );this Name = Form ;this Text = XMLReader ;this ResumeLayout(false);//// xmlPath//this xmlPath = sample xml ;#endregion/// <summary>/// 应用程序的主入口点 /// </summary>[STAThread]static void Main() Application Run(new Form ());private void button _Click(object sender System EventArgs e)xRead = new XmlReader(this xmlPath this listBox );tryxRead EachXml();catch(XmlException xmlExp)MessageBox Show(xmlExp ToString() Error MessageBoxButtons OK MessageBoxIcon Error);catch(Exception exp)MessageBox Show(exp ToString() Error MessageBoxButtons OK MessageBoxIcon Error);finallyxRead Dispose();private void button _Click(object sender System EventArgs e)xRead = new XmlReader(this xmlPath this listBox );tryxRead ReadXmlByNodeType();catch(XmlException xmlExp)MessageBox Show(xmlExp ToString() Error MessageBoxButtons OK MessageBoxIcon Error);catch(Exception exp)MessageBox Show(exp ToString() Error MessageBoxButtons OK MessageBoxIcon Error);finallyxRead Dispose();private void button _Click(object sender System EventArgs e)XmlNodeType[] xmlNType = XmlNodeType Element XmlNodeType EndElement XmlNodeType XmlDeclaration;xRead = new XmlReader(this xmlPath this listBox );tryxRead FilterByNodeType(xmlNType);catch(XmlException xmlExp)MessageBox Show(xmlExp ToString() Error MessageBoxButtons OK MessageBoxIcon Error);catch(Exception exp)MessageBox Show(exp ToString() Error MessageBoxButtons OK MessageBoxIcon Error);finallyxRead Dispose();private void button _Click(object sender System EventArgs e)xRead = new XmlReader(this xmlPath this listBox );tryxRead ReadXmlTextValue();catch(XmlException xmlExp)MessageBox Show(xmlExp ToString() Error MessageBoxButtons OK MessageBoxIcon Error);catch(Exception exp)MessageBox Show(exp ToString() Error MessageBoxButtons OK MessageBoxIcon Error);finallyxRead Dispose();private void button _Click(object sender System EventArgs e)xRead = new XmlReader(this xmlPath this listBox );tryxRead ReadXmlAttributes();catch(XmlException xmlExp)MessageBox Show(xmlExp ToString() Error MessageBoxButtons OK MessageBoxIcon Error);catch(Exception exp)MessageBox Show(exp ToString() Error MessageBoxButtons OK MessageBoxIcon Error);finallyxRead Dispose();private void button _Click(object sender System EventArgs e)xRead = new XmlReader(this xmlPath this listBox );tryxRead ReadXmlNamespace();catch(XmlException xmlExp)MessageBox Show(xmlExp ToString() Error MessageBoxButtons OK MessageBoxIcon Error);catch(Exception exp)MessageBox Show(exp ToString() Error MessageBoxButtons OK MessageBoxIcon Error);finallyxRead Dispose();private void button _Click(object sender System EventArgs e)xRead = new XmlReader(this xmlPath this listBox );tryxRead ReadXml();catch(XmlException xmlExp)MessageBox Show(xmlExp ToString() Error MessageBoxButtons OK MessageBoxIcon Error);catch(Exception exp)MessageBox Show(exp ToString() Error MessageBoxButtons OK MessageBoxIcon Error);finallyxRead Dispose();  以下是用于测试的XML文件   在项目中新建一个XML文件取名为sample xml 建好后把该文件拷到项目的bin目录下的Debug目录下 <?xml version= encoding= utf ?> <Invoices date= / / xmlns:cat= uri:Business Categories ><customers custname= Chile Wines Inc phone= email= custid= delivery= international offerID= ><cat:businfo>Wine Division South</cat:businfo> <cat:businfo>Beer Division North</cat:businfo><order orderID= OID batchid= ><details><items cat:num= ><item>Rancagua While</item><item>Rancagua Red</item></items></details></order><order orderID= OID ><details><items num= ><item>Chillan Red</item><item>Rancagua While</item><item>Santiago Red</item><item>Rancagua While</item><item>Rancagua Red</item></items> </details></order><order orderID= OID batchid= ><details><items num= ><item>Rancegao Red</item><item>Sutothad Black</item><item>BlackNme Blue</item><item>Booklist Red</item><item>Rancegao White</item></items></details></order></customers></Invoices> cha138/Article/program/net/201311/12170

相关参考

知识大全 spring中读取xml配置文件、获取bean

  读取xml文件  /**  *利用XmlBeanFactory(Resourceresource)  *这里Resource必须是xml格式  *Resource包括AbstractResourc

知识大全 JAVA读取xml文件中节点值

JAVA读取xml文件中节点值  以下文字资料是由(全榜网网www.cha138.com)小编为大家搜集整理后发布的内容,让我们赶快一起来看一下吧!  importwcd

知识大全 读取扩展名为xml的资源文件的方法

    今天重构代码时想把如下xml文件嵌入程序集中在运行时读取    <?xmlversion=encoding

知识大全 用Ajax读取XML格式的数

用Ajax读取XML格式的数  以下文字资料是由(全榜网网www.cha138.com)小编为大家搜集整理后发布的内容,让我们赶快一起来看一下吧!  用Ajax读取XML

知识大全 XML文件的读取[2]

PHP网络开发详解:XML文件的读取[2]  以下文字资料是由(全榜网网www.cha138.com)小编为大家搜集整理后发布的内容,让我们赶快一起来看一下吧! 

知识大全 XML文件的读取[1]

PHP网络开发详解:XML文件的读取[1]  以下文字资料是由(全榜网网www.cha138.com)小编为大家搜集整理后发布的内容,让我们赶快一起来看一下吧! 

知识大全 C#来创建和读取XML文档

C#来创建和读取XML文档  以下文字资料是由(全榜网网www.cha138.com)小编为大家搜集整理后发布的内容,让我们赶快一起来看一下吧!  扩展标记语言XML(e

知识大全 PHP读取xml方法介绍

PHP读取xml方法介绍  以下文字资料是由(全榜网网www.cha138.com)小编为大家搜集整理后发布的内容,让我们赶快一起来看一下吧!  一什么是xmlxml有什

知识大全 SQLServer读取XML文件的做法

SQLServer读取XML文件的做法  以下文字资料是由(全榜网网www.cha138.com)小编为大家搜集整理后发布的内容,让我们赶快一起来看一下吧!  SQLSe

知识大全 Java读取xml文件的四种方法

Java读取xml文件的四种方法  以下文字资料是由(全榜网网www.cha138.com)小编为大家搜集整理后发布的内容,让我们赶快一起来看一下吧!  xml文件  X