分享
 
 
 

如何使用 XPath 表达式查询 XML

王朝other·作者佚名  2006-01-09
窄屏简体版  字體: |||超大  

如何使用 XPath 表达式查询 XML

此示例阐释如何使用提供给 XPathNavigator 类的 W3C XML 路径语言 (XPath) 表达式查询 XPathDocument。XPathNavigator 类仅用于对文档进行只读 XPath 查询,而对于可扩展样式表语言转换 (XSLT) 处理,则由 XslTransform 类实现。对于 XSLT,不需要创建 XPathNavigator。

注意:XPath 是 W3C 的通用查询语言规范,用于对 XML 文档的某些部分进行寻址。XPath 的 .NET 框架实现符合 WWW 联合会 (W3C) XML 路径语言 (XPath) 1.0 版规范。

要使用 XSLT 对 XML 文档进行快速和高效的处理,请使用 XPathDocument 类。可以认为 XPathDocument 类与 XML DOM 相似,但前者为 XSLT 处理及 XPath 数据模型进行了高度优化。然而,与 W3C XML DOM 类不同的是,XPathDocument 类不维护节点标识,也不执行 DOM 类所要求的所有规则和验证检查。

您也可以针对 XmlDocument 或 XmlDataDocument 类执行 XPath 查询。如果您使用这两个类中的一个,则需要使用 XmlNode 类的 SelectNodes 和 SelectSingleNode 方法。

VB QueryXmlDocumentXPath.aspx

[运行示例] | [查看源代码]

此示例加载一个包含示例文件 books.xml 的 XPathDocument。然后,该示例将 XPath 表达式传递给 XPathQuery 函数。要传递的第一个 XPath 表达式选择从根节点开始的所有书籍元素节点的所有价格节点。第二个 XPath 表达式获取从根节点开始的、与最后的书籍元素节点关联的 ISBN 属性节点的文本。

要选择与给定 XPath 表达式匹配的节点,XPathQuery 函数使用 XPathNavigator 的 Select 方法。然后,该函数创建一个 XPathNodeIterator,并使用此迭代程序重复定位某个节点并把该节点显示在屏幕上。

注意:因为 XPathNodeIterator 表示一个 XPath 节点集,所以 XPathNodeIterator 支持在此节点集上的操作。

td.code {

padding:0,10,0,10;

border-style:solid;

border-width:1;

border-bottom:0;

border-top:0;

border-right:0;

border-color:cccccc;

background-color:ffffee

}

td.tab {

text-align:center;

font:8pt verdana;

width:15%;

padding:3,3,3,3;

border-style:solid;

border-width:1;

border-right:0;

border-color:black;

background-color:eeeeee;

cursor:hand

}

td.backtab {

text-align:center;

font: 8pt verdana;

width:15%;

padding:3,3,3,3;

border-style:solid;

border-width:1;

border-right:0;

border-color:black;

background-color:cccccc;

cursor:hand

}

td.space {

width:70%;

font: 8pt verdana;

padding:0,0,0,0;

border-style:solid;

border-bottom:0;

border-right:0;

border-width:1;

border-color:cccccc;

border-left-color:black;

background-color:white

}

private const String localURL = "http://localhost/quickstart/howto/samples/Xml/QueryXmlDocumentXPath/cs/books.xml";

public static void Main()

{

QueryXmlDocumentXPathSample myQueryXmlDocumentXPathSample = new QueryXmlDocumentXPathSample();

myQueryXmlDocumentXPathSample.Run(localURL);

}

public void Run(String args)

{

Console.WriteLine("XPath Test started ...");

XPathDocument myXPathDocument = new XPathDocument(args);

XPathNavigator myXPathNavigator = myXPathDocument.CreateNavigator();

// Get all the book prices

XPathQuery(myXPathNavigator, "descendant::book/price");

// Get the ISBN of the last book

XPathQuery(myXPathNavigator, "bookstore/book[3]/@ISBN");

}

private void XPathQuery(XPathNavigator myXPathNavigator, String xpathexpr )

{

try

{

Console.WriteLine("XPath query: " + xpathexpr);

// Create a node interator to select nodes and move through them (read-only)

XPathNodeIterator myXPathNodeIterator = myXPathNavigator.Select (xpathexpr);

while (myXPathNodeIterator.MoveNext())

{

Console.WriteLine("<" + myXPathNodeIterator.Current.Name + "> " + myXPathNodeIterator.Current.Value);

}

Console.WriteLine();

}

catch (Exception e)

{

Console.WriteLine ("Exception: {0}", e.ToString());

}

}

private const localURL as String = "http://localhost/quickstart/howto/samples/Xml/QueryXmlDocumentXPath/cs/books.xml"

Shared sub Main

Dim myQueryXmlDocumentXPathSample as QueryXmlDocumentXPathSample

myQueryXmlDocumentXPathSample = new QueryXmlDocumentXPathSample()

myQueryXmlDocumentXPathSample.Run(localURL)

end sub

public sub Run(args as String)

Console.WriteLine("XPath Test started ...")

Dim myXPathDocument as XPathDocument = new XPathDocument(args)

Dim myXPathNavigator as XPathNavigator = myXPathDocument.CreateNavigator()

' Get all the book prices

XPathQuery(myXPathNavigator, "descendant::book/price")

' Get the ISBN of the last book

XPathQuery(myXPathNavigator, "bookstore/book[3]/@ISBN")

end sub

private sub XPathQuery(myXPathNavigator as XPathNavigator, xpathexpr as String )

try

Console.WriteLine("XPath query: " + xpathexpr)

' Create a node interator to select nodes and move through them (read-only)

Dim myXPathNodeIterator as XPathNodeIterator = myXPathNavigator.Select (xpathexpr)

while (myXPathNodeIterator.MoveNext())

Console.WriteLine("<" & myXPathNodeIterator.Current.Name + "> " & myXPathNodeIterator.Current.Value)

end while

Console.WriteLine()

catch e as Exception

Console.WriteLine ("Exception: {0}", e.ToString())

end try

end sub

C#

VB

第一个查询选择从根节点开始的所有书籍的“价格”节点。第二个查询获取从根节点开始的最后的书籍元素节点的“ISBN”属性文本。

也可使用 XPathExpression 类执行查询。使用 XPathExpression 类而不使用 Select 方法(在 XPathNavigator 上)中的字符串表达式的原因主要有两个:

1) 表达式只编译一次,并可重复使用多次,这样可提高性能

2) 可使用 XmlNamespaceManager 类将 XPath 表达式中使用的前缀绑定到某个命名空间,这样当选择一组节点时,就允许使用带前缀的 XPath 表达式。

下列代码显示一般用法,即选择其 ISBN 属性在 urn:samples 命名空间中的所有书籍。

// compile the expression

XPathExpression expr = nav.Compile("book/@mybk:ISBN");

// set namespace(s) used in the expression

XmlNamespaceManager mngr = new XmlNamespaceManager(new NameTable());

mngr.AddNamespace("mybk","urn:samples");

expr.SetContext(mngr);

// select the nodes

XPathNodeIterator myXPathNodeIterator = nav.Select(expr);

' compile the expression

Dim expr as XPathExpression = nav.Compile("book/@mybk:ISBN")

' set namespace(s) used in the expression

Dim mngr as XmlNamespaceManager = new XmlNamespaceManager(new NameTable())

mngr.AddNamespace("mybk","urn:samples")

expr.SetContext(mngr)

' select the nodes

Dim myXPathNodeIterator as XPathNodeIterator = nav.Select(expr)

C#

VB

如果 XPathExpression 没有前缀,则假设该命名空间 URI 为空的命名空间。如果 XML 包括默认的命名空间,则必须仍然使用 SetContext 方法,并提供一个包含前缀和命名空间 URI 的 XmlNamespaceManager,以处理默认命名空间。有关使用 XmlNamespaceManager 的更多信息,请参阅“XmlNameSpace 管理器与命名表”主题。

摘要

要查询 XPathDocument、XmlDataDocument 或 XmlDocument,可以为 XPathNavigator 类提供 XPath 表达式。

XPathNavigator 类仅用于对 XML 文档进行只读 XPath 查询。

XPathDocument 类为使用 XSLT 处理 XML 文档提供快速、高效的特定缓存。

版权所有 2001 Microsoft Corporation。保留所有权利。

 
 
 
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
2023年上半年GDP全球前十五强
 百态   2023-10-24
美众议院议长启动对拜登的弹劾调查
 百态   2023-09-13
上海、济南、武汉等多地出现不明坠落物
 探索   2023-09-06
印度或要将国名改为“巴拉特”
 百态   2023-09-06
男子为女友送行,买票不登机被捕
 百态   2023-08-20
手机地震预警功能怎么开?
 干货   2023-08-06
女子4年卖2套房花700多万做美容:不但没变美脸,面部还出现变形
 百态   2023-08-04
住户一楼被水淹 还冲来8头猪
 百态   2023-07-31
女子体内爬出大量瓜子状活虫
 百态   2023-07-25
地球连续35年收到神秘规律性信号,网友:不要回答!
 探索   2023-07-21
全球镓价格本周大涨27%
 探索   2023-07-09
钱都流向了那些不缺钱的人,苦都留给了能吃苦的人
 探索   2023-07-02
倩女手游刀客魅者强控制(强混乱强眩晕强睡眠)和对应控制抗性的关系
 百态   2020-08-20
美国5月9日最新疫情:美国确诊人数突破131万
 百态   2020-05-09
荷兰政府宣布将集体辞职
 干货   2020-04-30
倩女幽魂手游师徒任务情义春秋猜成语答案逍遥观:鹏程万里
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案神机营:射石饮羽
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案昆仑山:拔刀相助
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案天工阁:鬼斧神工
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案丝路古道:单枪匹马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:与虎谋皮
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:李代桃僵
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:指鹿为马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:小鸟依人
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:千金买邻
 干货   2019-11-12
 
推荐阅读
 
 
 
>>返回首頁<<
 
靜靜地坐在廢墟上,四周的荒凉一望無際,忽然覺得,淒涼也很美
© 2005- 王朝網路 版權所有