主頁 > 知識庫 > 怎樣快速從一個XML文件中查找信息

怎樣快速從一個XML文件中查找信息

熱門標簽:如何修改多個百度地圖標注 隨州外呼調(diào)研系統(tǒng) 400電話辦理包年 高德地圖地圖標注服務中心 r語言數(shù)據(jù)可視化地圖標注 南寧網(wǎng)絡外呼系統(tǒng)運營商 本地電話機器人 東營電銷 微信地圖標注合并了
在網(wǎng)絡時代,XML文件起到了一個保存和傳輸數(shù)據(jù)的作用。Soap協(xié)議通過Xml交流信息,數(shù)據(jù)庫通過Xml文件存取等等。那么怎樣快速的從一個XML文件中取得所需的信息呢?

我們知道,JAVA的JAXP中和Microsoft.Net都有Xml分析器,Microsoft.Net是邊讀邊分析,而JAXP是讀到內(nèi)存中然后才進行分析(還有一種是事件機制去讀),總而言之,是不利于快速讀取?;诖耍琈icrosoft.Net 和JAXP都提供了XPATH機制,來快速定位到XML文件中所需的節(jié)點。

例如有一個XML文件:booksort.xml:

?xml version="1.0"?>

!-- a fragment of a book store inventory database -->

bookstore xmlns:bk="urn:samples">

book genre="novel" publicationdate="1997" bk:ISBN="1-861001-57-8">

title>Pride And Prejudice/title>

author>

first-name>Jane/first-name>

last-name>Austen/last-name>

/author>

price>24.95/price>

/book>

book genre="novel" publicationdate="1992" bk:ISBN="1-861002-30-1">

title>The Handmaid's Tale/title>

author>

first-name>Margaret/first-name>

last-name>Atwood/last-name>

/author>

price>29.95/price>

/book>

book genre="novel" publicationdate="1991" bk:ISBN="1-861001-57-6">

title>Emma/title>

author>

first-name>Jane/first-name>

last-name>Austen/last-name>

/author>

price>19.95/price>

/book>

book genre="novel" publicationdate="1982" bk:ISBN="1-861001-45-3">

title>Sense and Sensibility/title>

author>

first-name>Jane/first-name>

last-name>Austen/last-name>

/author>

price>19.95/price>

/book>

/bookstore>

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

XmlReaderSample.cs

//Corelib.net/System.Xml.Xsl/XPathDocument Class

//Author :Any


using 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);

}

}

}

運行這個程序,結(jié)果為:

Book title: Pride And Prejudice

Book title: Emma

Book title: Sense and Sensibility


可以看到查找正確。

利用XPATH中的一些功能,也可以實現(xiàn)簡單的排序和簡單運算。如在數(shù)據(jù)庫中經(jīng)常要對數(shù)據(jù)進行匯總,就可用XPATH實現(xiàn)。

如:

order.xml

!--Represents a customer order-->

order>

book ISBN='10-861003-324'>

title>The Handmaid's Tale/title>

price>19.95/price>

/book>

cd ISBN='2-3631-4'>

title>Americana/title>

price>16.95/price>

/cd>

/order>


和:books.xml

?xml version="1.0"?>

!-- This file represents a fragment of a book store inventory database -->

bookstore>

book cc="dd" xmlns:bk="urn:sample" xmlns:ns="http://www.Any.com" genre="autobiography" publicationdate="1981" ISBN="1-861003-11-0">

title>The Autobiography of Benjamin Franklin/title>

ns:author>

first-name>Benjamin/first-name>

last-name>Franklin/last-name>

/ns:author>

price>8.99/price>

/book>

book genre="novel" publicationdate="1967" ISBN="0-201-63361-2">

title>The Confidence Man/title>

author>

first-name>Herman/first-name>

last-name>Melville/last-name>

/author>

price>11.99/price>

/book>

book genre="philosophy" publicationdate="1991" ISBN="1-861001-57-6">

title>The Gorgias/title>

author>

name>Plato/name>

/author>

price>9.99/price>

/book>

/bookstore>


我們可以對該XML文件中的price求和,以得到價格總數(shù)。

Evaluate.cs

//Corelib.net/System.Xml.Xsl/XPathNavigator Class

//Author :Any


using 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());

}

}


}

運行這個程序,結(jié)果如下:

30.97

36.9

36.9

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

標簽:黃石 果洛 西雙版納 德州 寧夏 益陽 拉薩 宿遷

巨人網(wǎng)絡通訊聲明:本文標題《怎樣快速從一個XML文件中查找信息》,本文關(guān)鍵詞  怎樣,快速,從,一個,XML,文件,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡,涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《怎樣快速從一個XML文件中查找信息》相關(guān)的同類信息!
  • 本頁收集關(guān)于怎樣快速從一個XML文件中查找信息的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章