怎樣快速從一個XML檔案中查詢資訊(轉)

amyz發表於2007-08-12
怎樣快速從一個XML檔案中查詢資訊(轉)[@more@]

  在網路時代,XML檔案起到了一個儲存和傳輸資料的作用。Soap協議透過Xml交流資訊,資料庫透過Xml檔案存取等等。那麼怎樣快速的從一個XML檔案中取得所需的資訊呢?我們知道,JAVA的JAXP中和Microsoft.Net都有Xml分析器,Microsoft.Net是邊讀邊分析,而JAXP是讀到記憶體中然後才進行分析(還有一種是事件機制去讀),總而言之,是不利於快速讀取。基於此,Microsoft.Net 和JAXP都提供了XPATH機制,來快速定位到XML檔案中所需的節點。

  例如有一個XML檔案:booksort.xml:

  <!-- a fragment of a book store inventory database --&gtPride And PrejudiceJaneAusten24.95The Handmaid's TaleMargaretAtwood29.95EmmaJaneAusten19.95Sense and SensibilityJaneAusten19.95

  如果我們想快速查詢”last-name”等於”Austen”的所有標題名,可以透過以下方法可以得到:

  XmlReaderSample.cs//Corelib.net/System.Xml.Xsl/XPathDocument Class//Author :Anyusing System;using System.IO;using System.Xml;using System.Xml.XPath;public class XmlReaderSample{public static void Main(){XmlTextReader myxtreader = new XmlTextReader("booksort.xml");XmlReader myxreader = myxtreader;XPathDocument doc = new XPathDocument(myxreader);XPathNavigator nav = doc.CreateNavigator();XPathExpression expr;expr = nav.Compile("descendant::book[author/last-name='Austen']");//expr.AddSort("title", XmlSortOrder.Ascending, XmlCaseOrder.None, "", XmlDataType.Text);XPathNodeIterator iterator = nav.Select(expr);while (iterator.MoveNext()){XPathNavigator nav2 = iterator.Current;nav2.MoveToFirstChild();Console.WriteLine("Book title: {0}", nav2.Value);}}}

  執行這個程式,結果為:

  Book title: Pride And Prejudice

  Book title: Emma

  Book title: Sense and Sensibility

  可以看到查詢正確。

  利用XPATH中的一些功能,也可以實現簡單的排序和簡單運算。如在資料庫中經常要對資料進行彙總,就可用XPATH實現。

  如:

  order.xml

  <!--Represents a customer order--&gtThe Handmaid's Tale19.95Americana16.95

  和:books.xml

  <!-- This file represents a fragment of a book store inventory database --&gtThe Autobiography of Benjamin FranklinBenjaminFranklin8.99The Confidence ManHermanMelville11.99The GorgiasPlato9.99

  我們可以對該XML檔案中的price求和,以得到價格總數。

  Evaluate.cs//Corelib.net/System.Xml.Xsl/XPathNavigator Class//Author :Anyusing System;using System.IO;using System.Xml;using System.Xml.XPath;public class EvaluateSample{public static void Main(){EvaluateSample myEvaluateSample = new EvaluateSample();myEvaluateSample.test("books.xml");}public void test(String args){try{//test Evaluate(String);XPathDocument myXPathDocument = new XPathDocument(args);XPathNavigator myXPathNavigator = myXPathDocument.CreateNavigator();Console.WriteLine(myXPathNavigator.Evaluate("sum(descendant::book/price)"));//testEvaluate(XPathExpression);XmlDocument doc = new XmlDocument();doc.Load("order.xml");XPathNavigator nav = doc.CreateNavigator();XPathExpression expr = nav.Compile("sum(//price/text())");Console.WriteLine(nav.Evaluate(expr));//testEvaluate(XPathExpression);XPathNodeIterator myXPathNodeIterator = nav.Select("descendant::book/title");expr = nav.Compile("sum(//price/text())");Console.WriteLine(nav.Evaluate(expr,myXPathNodeIterator));}catch (Exception e){Console.WriteLine ("Exception: {0}", e.ToString());}}}

  執行這個程式,結果如下:

  30.97

  36.9

  36.9

  我們可以看到,30.97是books.xml中所有price值的總和,而36.9則是order.xml中所有price值的總和。透過XPAH不僅可以快速查詢資訊,而且還可以對資訊進行一些基本的處理。


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/10752019/viewspace-950309/,如需轉載,請註明出處,否則將追究法律責任。

相關文章