明輝手游網(wǎng)中心:是一個(gè)免費(fèi)提供流行視頻軟件教程、在線學(xué)習(xí)分享的學(xué)習(xí)平臺!

在.NET Framework中簡單處理XML數(shù)據(jù)(5-1)

[摘要]設(shè)計(jì)XmlReadWriter類 如前面所說,XML reader和Writer是各自獨(dú)立工作的:reader只讀,writer只寫。假設(shè)你的應(yīng)用程序要管理冗長的XML文檔,且該文檔有不確定的數(shù)據(jù)。Reader提供了一個(gè)很好的方法去讀該文檔的內(nèi)容。另一方面,Writer是一個(gè)非常有用的用于...
設(shè)計(jì)XmlReadWriter類

如前面所說,XML reader和Writer是各自獨(dú)立工作的:reader只讀,writer只寫。假設(shè)你的應(yīng)用程序要管理冗長的XML文檔,且該文檔有不確定的數(shù)據(jù)。Reader提供了一個(gè)很好的方法去讀該文檔的內(nèi)容。另一方面,Writer是一個(gè)非常有用的用于創(chuàng)建XML文檔片斷工具,但是如果你想要它即能讀,又能寫,那么你就要用XMLDOM了。如果實(shí)際的XML文檔非常龐大,又會(huì)出現(xiàn)了一個(gè)問題,什么問題呢?是不是把這個(gè)XML文檔全部加載到內(nèi)存中,然后進(jìn)行讀和寫呢?讓我們先看一下怎么樣建立一個(gè)混合的流分析器用于分析大型的XMLDOM。

像一般的只讀操作一樣,用普通的XML reader去順序的訪問節(jié)點(diǎn)。不同的是,在讀的同時(shí)你可以用XML writer改變屬性值以及節(jié)點(diǎn)的內(nèi)容。你用reader去讀源文件中的每個(gè)節(jié)點(diǎn),后臺的writer創(chuàng)建該節(jié)點(diǎn)的一個(gè)拷貝。在這個(gè)拷貝中,你可以增加一些新的節(jié)點(diǎn),忽略或者編輯其它的一些節(jié)點(diǎn),還可以編輯屬性的值。當(dāng)你完成修改后,你就用新的文檔替換舊的文檔。

一個(gè)簡單有效的辦法是從只讀流中拷貝節(jié)點(diǎn)對象到write流中,這種方法可以用XmlTextWriter類中的兩個(gè)方法:WriteAttributes方法和WriteNode方法。 WriteAttributes方法讀取當(dāng)前reader中選中的節(jié)點(diǎn)的所有有效的屬性,然后把屬性當(dāng)作一個(gè)單獨(dú)的string拷貝到當(dāng)前的輸出流中。同樣的,WriteNode方法用類似的方法處理除屬性節(jié)點(diǎn)外的其它類型的節(jié)點(diǎn)。圖十所示的代碼片斷演示了怎么用上述的兩個(gè)方法創(chuàng)建一個(gè)源XML文檔的拷貝,有選擇的修改某些節(jié)點(diǎn)。XML樹從樹根開始被訪問,但只輸出了除屬性節(jié)點(diǎn)類型以外的其它類型的節(jié)點(diǎn)。你可以把Reader和Writer整合在一個(gè)新的類中,設(shè)計(jì)一個(gè)新的接口,使它能讀寫流及訪問屬性和節(jié)點(diǎn)。

Figure 10 Using the WriteNode Method

XmlTextReader reader = new XmlTextReader(inputFile);

XmlTextWriter writer = new XmlTextWriter(outputFile);



// 配置 reader 和 writer

writer.Formatting = Formatting.Indented;

reader.MoveToContent();



// Write根節(jié)點(diǎn)

writer.WriteStartElement(reader.LocalName);



// Read and output every other node

int i=0;

while(reader.Read())

{

if (i % 2)

writer.WriteNode(reader, false);

i++;

}



// Close the root

writer.WriteEndElement();



// Close reader and writer

writer.Close();

reader.Close();

我的XmlTextReadWriter類并沒有從XmlReader或者XmlWriter類中繼承。取而代之的是另外兩個(gè)類,一個(gè)是基于只讀流(stream)的操作類,另一個(gè)是基于只寫流的操作類。XmlTextReadWriter類的方法用Reader對象讀數(shù)據(jù),寫入到Writer對象。為了適應(yīng)不同的需求,內(nèi)部的Reader和Writer 對象分別通過只讀的Reader和Writer屬性公開。圖十一列出了該類的一些方法:

Figure 11 XmlTextReadWriter Class Methods

Method
Description

AddAttributeChange
Caches all the information needed to perform a change on a node attribute. All the changes cached through this method are processed during a successive call to WriteAttributes.

Read
Simple wrapper around the internal reader's Read method.

WriteAttributes
Specialized version of the writer's WriteAttributes method, writes out all the attributes for the given node, taking into account all the changes cached through the AddAttributeChange method.

WriteEndDocument
Terminates the current document in the writer and closes both the reader and the writer.

WriteStartDocument
Prepares the internal writer to output the document and add a default comment text and the standard XML prolog.


這個(gè)新類有一個(gè)Read方法,它是對Reader的read方法的一個(gè)簡單的封裝。另外,它提供了WriterStartDocument和WriteEndDocument方法。它們分別初始化/釋放(finalize)了內(nèi)部Reader和writer對象,還處理所有I/O操作。在循環(huán)讀節(jié)點(diǎn)的同時(shí),我們就可以直接的修改節(jié)點(diǎn)。出于性能的原因,要修改屬性必須先用AddAttributeChange方法聲明。對一個(gè)節(jié)點(diǎn)的屬性所作的所有修改都會(huì)存放在一個(gè)臨時(shí)的表中,最后,通過調(diào)用WriteAttribute方法提交修改,清除臨時(shí)表。