我們今天的主題不是論述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()方法讀取下一個節點。好了,說了這麼多來看一個例子,編程要注重實際對吧。看代碼前先看下運行效果吧!
Example1按紐遍歷文檔讀取數據,Example2,Example3按紐得到節點類型,Example4過濾文檔只獲得數據內容,Example5得到屬性節點,Example6按紐得到命名空間,Example7顯示整個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 = 0; 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("<?{0} {1} ?>",xmlTxtRd.Name,XMLTxtRd.Value));
else if (xmlTxtRd.NodeType == XMLNodeType.Element)
{
attAndEle = string.Format("<{0} ",XMLTxtRd.Name);
if (XMLTxtRd.HasAttributes)
{
while(XMLTxtRd.MoveToNextAttribute())
{
attAndEle = attAndEle + string.Format("{0}='{1}' ",xmlTxtRd.Name,XMLTxtRd.Value);
}
}
attAndEle = attAndEle.Trim() + ">";
this._listBox.Items.Add(attAndEle);
}
else if (xmlTxtRd.NodeType == XMLNodeType.EndElement)
this._listBox.Items.Add(string.Format("</{0}>",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();
}
}
}
}