在.NET Framework中輕鬆處理XML資料(5-1)

來源:互聯網
上載者:User
??設計XmlReadWriter類

??如前面所說,XML reader和Writer是各自獨立工作的:reader唯讀,writer唯寫。假設你的利用程式要治理冗長的XML文檔,且該文檔有不斷定的資料。Reader供給了一個很好的方法往讀該文檔的內容。另一方面,Writer是一個非常有用的用於創立XML文檔片段工具,但是假如你想要它即能讀,又能寫,那麼你就要用XMLDOM了。假如實際的XML文檔非常宏大,又會呈現了一個標題,什麼標題呢?是不是把這個XML文檔全部載入到記憶體中,然落後行讀和寫呢?讓我們先看一下怎麼樣建立一個混雜的串流分析器用於分析大型的XMLDOM。

??像一般的唯讀把持一樣,用普通的XML reader往次序的拜訪節點。不同的是,在讀的同時你可以用XML writer轉變屬性值以及節點的內容。你用reader往讀源檔案中的每個節點,背景writer創立該節點的一個拷貝。在這個拷貝中,你可以增加一些新的節點,疏忽或者編纂其它的一些節點,還可以編纂屬性的值。當你完成修正後,你就用新的文檔調換舊的文檔。

??一個簡略有效措施是從唯讀流中拷貝節點對象到write流中,這種方法可以用XmlTextWriter類中的兩個方法:WriteAttributes方法和WriteNode方法。 WriteAttributes方法讀取當前reader中選中的節點的所有有效屬性,然後把屬性當作一個單獨的string拷貝到當前的輸出資料流中。同樣的,WriteNode方法用類似的方法處理除屬性節點外的其它類型的節點。圖十所示的程式碼片段示範了怎麼用上述的兩個方法創立一個源XML文檔的拷貝,有選擇的修正某些節點。XML樹從樹根開端被拜訪,但只輸出了除屬性節點類型以外的其它類型的節點。你可以把Reader和Writer整合在一個新的類中,設計一個新的介面,使它能讀寫流及拜訪屬性和節點。

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根節點

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類中持續。取而代之的是另外兩個類,一個是基於唯讀流(stream)的把持類,另一個是基於唯寫流的把持類。XmlTextReadWriter類的方法用Reader對象讀資料,寫進到Writer對象。為了適應不同的需求,內部的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.


??這個新類有一個Read方法,它是對Reader的read方法的一個簡略的封裝。另外,它供給了WriterStartDocument和WriteEndDocument方法。它們分辨初始化/開釋(finalize)了內部Reader和writer對象,還處理所有I/O把持。在迴圈讀節點的同時,我們就可以直接的修正節點。出於效能的原因,要修正屬性必需先用AddAttributeChange方法聲明。對一個節點的屬性所作的所有修正都會存放在一個臨時的表中,最後,通過調用WriteAttribute方法提交修正,清除暫存資料表。

以上就是在.NET Framework中輕鬆處理XML資料(5-1) 的內容,更多相關內容請關注topic.alibabacloud.com(www.php.cn)!
  • 相關文章

    聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.