`

XPath详解

阅读更多

New Document

相关读书笔记、心得文章列表

一、结点类型

 

XPath中有七种结点类型:元素、属性、文本、命名空间、处理指令、注释以及文档节点(或成为根节点)。 文档的根节点即是文档结点;对应属性有属性结点,元素有元素结点。

 

 

 

二、常用路径表达式

 

表达式 描述
nodename                                      选取此节点的所有子节点
/                                      从根节点选取
//                                      从匹配选择的当前节点选择文档中的节点,而不考虑它们的位置
.                                      选取当前节点
..                                      选取当前节点的父节点
@                                      选取属性
  例如有文档:
[xhtml] view plaincopy
  1. <?xml version="1.0" encoding="ISO-8859-1"?>  
  2. <bookstore>  
  3. <book>  
  4.   <title lang="eng">Harry Potter</title>  
  5.   <price>29.99</price>  
  6. </book>  
  7. <book>  
  8.   <title lang="eng">Learning XML</title>  
  9.   <price>39.95</price>  
  10. </book>  
  11. </bookstore>  
则:
路径表达式 结果
bookstore 选取 bookstore 元素的所有子节点
/bookstore 选取根元素 bookstore 注释:假如路径起始于正斜杠( / ),则此路径始终代表到某元素的绝对路径!
bookstore/book 选取所有属于 bookstore 的子元素的 book 元素。
//book 选取所有 book 子元素,而不管它们在文档中的位置。
bookstore//book 选择所有属于 bookstore 元素的后代的 book 元素,而不管它们位于 bookstore 之下的什么位置。
//@lang 选取所有名为 lang 的属性。
 
三、限定语
用来查找某个特定的节点或者包含某个指定的值的节点。以方括号括起。
例如:
路径表达式 结果
/bookstore/book[1] 选取属于 bookstore 子元素的第一个 book 元素。
/bookstore/book[last()] 选取属于 bookstore 子元素的最后一个 book 元素。
/bookstore/book[last()-1] 选取属于 bookstore 子元素的倒数第二个 book 元素。
/bookstore/book[position()<3] 选取最前面的两个属于 bookstore 元素的子元素的 book 元素。
//title[@lang] 选取所有拥有名为 lang 的属性的 title 元素。
//title[@lang='eng'] 选取所有 title 元素,且这些元素拥有值为 eng 的 lang 属性。
/bookstore/book[price>35.00] 选取所有 bookstore 元素的 book 元素,且其中的 price 元素的值须大于 35.00。
/bookstore/book[price>35.00]/title 选取所有 bookstore 元素中的 book 元素的 title 元素,且其中的 price 元素的值须大于 35.00。
 
四、通配符
通配符 描述
* 匹配任何元素节点
@* 匹配任何属性节点
node() 匹配任何类型的节点
|          选取若干路径  
 
例如:
路径表达式 结果
/bookstore/* 选取 bookstore 元素的所有子节点
//* 选取文档中的所有元素
//title[@*] 选取所有带有属性的 title 元素。

//book/title | //book/price 选取所有 book 元素的 tilte 和 price 元素。
//title | //price 选取所有文档中的 title 和 price 元素。
/bookstore/book/title | //price 选取所有属于 bookstore 元素的 book 元素的 title 元素,以及文档中所有的 price 元素。

 

 

 

五、函数

 

名称 结果
ancestor 选取当前节点的所有先辈(父、祖父等)
ancestor-or-self 选取当前节点的所有先辈(父、祖父等)以及当前节点本身
attribute 选取当前节点的所有属性
child 选取当前节点的所有子元素。
descendant 选取当前节点的所有后代元素(子、孙等)。
descendant-or-self 选取当前节点的所有后代元素(子、孙等)以及当前节点本身。
following 选取文档中当前节点的结束标签之后的所有节点。
namespace 选取当前节点的所有命名空间节点
parent 选取当前节点的父节点。
preceding 选取文档中当前节点的开始标签之前的所有节点。
preceding-sibling 选取当前节点之前的所有同级节点。
self 选取当前节点。
路径表达式可以是绝对路径,也可以是相对路径。例如:

绝对位置路径:

/step/step/...

相对位置路径:

step/step/...
其中的每一步又可以是一个表达式,包括:
轴(函数)(axis)
定义所选节点与当前节点之间的树关系
节点测试(node-test)
识别某个轴内部的节点
零个或者更多谓语(predicate)
更深入地提炼所选的节点集
例如: 例子 结果
child::book 选取所有属于当前节点的子元素的 book 节点
attribute::lang 选取当前节点的 lang 属性
child::* 选取当前节点的所有子元素
attribute::* 选取当前节点的所有属性
child::text() 选取当前节点的所有文本子节点
child::node() 选取当前节点的所有子节点
descendant::book 选取当前节点的所有 book 后代
ancestor::book 选择当前节点的所有 book 先辈
ancestor-or-self::book 选取当前节点的所有book先辈以及当前节点(假如此节点是book节点的话)
child::*/child::price 选取当前节点的所有 price 孙。
 
六、运算符
运算符 描述 实例 返回值
| 计算两个节点集 //book | //cd 返回所有带有 book 和 ck 元素的节点集
+ 加法 6 + 4 10
- 减法 6 - 4 2
* 乘法 6 * 4 24
div 除法 8 div 4 2
= 等于 price=9.80 如果 price 是9.80,则返回 true。 如果 price 是9.90,则返回 fasle。
!= 不等于 price!=9.80 如果 price 是 9.90,则返回 true。 如果 price 是 9.98,则返回 fasle。
< 小于 price<9.80 如果price是9.00,则返回true 如果price是9.98,则返回fasle
<= 小于或等于 price<=9.80 如果 price 是9.00,则返回 true。 如果 price 是9.90,则返回 fasle。
> 大于 price>9.80 如果 price 是 9.90,则返回 true。 如果 price 是 9.80,则返回 fasle。
>= 大于或等于 price>=9.80 如果 price 是 9.90,则返回 true。 如果 price 是 9.70,则返回 fasle。
or price=9.80 or price=9.70 如果 price 是 9.80,则返回 true。 如果 price 是 9.50,则返回 fasle。
and price>9.00 and price<9.90 如果 price 是 9.80,则返回 true。 如果 price 是 8.50,则返回 fasle。
mod 计算除法的余数 5 mod 2 1
 

 

七、在Java中使用Xpath

 

在java1.5中推出了一个javax.xml.xpath包专门用来在java中使用Xpath表达式来读取xml。

 

1. 数据类型

 

在学习之前首先需要注意的是:Xpath的数据并不与Java有一一对应关系,Xpath1.0只声明了四种数据类型:

 

  • node-set
  • number
  • boolean
  • string
 
对应到java就是:
  • number 映射为 java.lang.Double
  • string 映射为 java.lang.String
  • boolean 映射为 java.lang.Boolean
  • node-set 映射为 org.w3c.dom.NodeList
 
因此,在使用java的xpathAPI时,需要注意返回类型:
Java代码
  1.  public Object evaluate(Object item, QName returnType)throws XPathExpressionException;    
  2.     
  3. public String evaluate(Object item)throws XPathExpressionException;    
  4.     
  5. public Object evaluate(InputSource source, QName returnType)throws XPathExpressionException;    
  6.    
  7. public String evaluate(InputSource source)throws XPathExpressionException;    
  1. public Object evaluate(Object item, QName returnType)throws XPathExpressionException;  
  2.   
  3. public String evaluate(Object item)throws XPathExpressionException;  
  4.   
  5. public Object evaluate(InputSource source, QName returnType)throws XPathExpressionException;  
  6.   
  7. public String evaluate(InputSource source)throws XPathExpressionException;  
不指定返回类型时,缺省返回类型为String。指定返回类型时,需要把返回值由Object类型强制转换成对应的返回类型。  
2. API的使用
类似于Dom,要得到一个Xpath对象,可以如下使用: Java代码
  1. XPathFactory factory = XPathFactory.newInstance();    
  2. XPath xpath = factory.newXPath();    
  3. XPathExpression expression = xpath.compile("/bookstore//book/title/text()");    
  1. <strong><strong>        XPathFactory factory = XPathFactory.newInstance();  
  2.         XPath xpath = factory.newXPath();  
  3.         XPathExpression expression = xpath.compile("/bookstore//book/title/text()");</strong></strong>  
还是以之前的xml文档为例。要得到这个表达式的结果,我们先要得到一个输入对象,例如一个document:
Java代码
  1. DocumentBuilderFactory builderFactory = DocumentBuilderFactory.newInstance();    
  2. DocumentBuilder documentBuilder = builderFactory.newDocumentBuilder();    
  3. Document document = documentBuilder.parse(new File("books.xml"));    
  4. NodeList list = (NodeList) expression.evaluate(document,XPathConstants.NODESET);    
  1. <strong><strong>        DocumentBuilderFactory builderFactory = DocumentBuilderFactory.newInstance();  
  2.         DocumentBuilder documentBuilder = builderFactory.newDocumentBuilder();  
  3.         Document document = documentBuilder.parse(new File("books.xml"));  
  4.         NodeList list = (NodeList) expression.evaluate(document,XPathConstants.NODESET);</strong></strong>  
这里可以看出,在使用Xpath的时候,我们好像需要很清楚的知道返回结果是什么。否则就不能得到意想的结果。
最后,我们得到一个title的list值:
Java代码
  1. for(int i = 0;i<list.getLength();i++){                System.out.println(list.item(i).getNodeValue());    
  2. }  
  1. <strong><strong>        for(int i = 0;i</strong></strong>  
Java代码
  1. Everyday Italian  
  2. Harry Potter  
  3. XQuery Kick Start  
  4. Learning XML  
  1. <strong><strong>Everyday Italian  
  2. Harry Potter  
  3. XQuery Kick Start  
  4. Learning XML</strong></strong>  

 

八、处理命令空间

 

一般一个规范xml都会有命名空间的定义,例如:

 

  1. <strong><strong>  
  2.   
  3.             
  4.             Hello  
  5.             
  6. </strong></strong>  

 

 
  1. <?xml version="1.0" encoding="UTF-8"?>    
  2. <tg:bookstore xmlns:tg="http://www.tibco.com/cdc/liugang"    
  3.            xmlns:ns="http://www.tibco.com/cdc/liugang/ns">    
  4.           <ns:book>    
  5.             <tg:title>Hello</tg:title>    
  6.           </ns:book>    
  7. </tg:bookstore>  
 

 

xpath中定义了与节点名和命名空间有关的三个函数:

 

  • local-name()
  • namespace-uri()
  • name()

例如要查找所有在当前文档中定义的,元素的local名为book的结点,则如下:

Java代码
  1. XPathFactory xPathFactory = XPathFactory.newInstance();    
  2. XPath xpath = xPathFactory.newXPath();    
  3. XPathExpression compile = xpath.compile("//*[local-name()='book']");    
  4. NodeList list = (NodeList) compile.evaluate(document,XPathConstants.NODESET);    

 

  1. <strong><strong>        XPathFactory xPathFactory = XPathFactory.newInstance();  
  2.         XPath xpath = xPathFactory.newXPath();  
  3.         XPathExpression compile = xpath.compile("//*[local-name()='book']");  
  4.         NodeList list = (NodeList) compile.evaluate(document,XPathConstants.NODESET);</strong></strong>  

如果元素定义了命名空间,则使用xpath查找时也必须指定在同一个命名空间中,即便元素使用的是缺省的命名空间,刚查找也需要定义缺省的命名空间。 例如文档:

Xml代码
[xhtml] view plaincopy
  1. <?xml version="1.0" encoding="UTF-8"?>    
  2. <bookstore xmlns="http://www.tibco.com/cdc/liugang" xmlns:tg="http://www.tibco.com/cdc/liugang/tg"    
  3.            xmlns:ns="http://www.tibco.com/cdc/liugang/ns">    
  4.           <ns:book>    
  5.             <tg:title>Hello</tg:title>    
  6.           </ns:book>    
  7.           <computer>    
  8.                <id>ElsIOIELdslke-1233</id>    
  9.           </computer>    
  10. </bookstore>  

 

  1. <strong><strong>  
  2.   
  3.             
  4.             Hello  
  5.             
  6.             
  7.                ElsIOIELdslke-1233  
  8.             
  9. </strong></strong>  

定义了三个命名空间:缺省的;xmlns:tg;xmlns:ns。 要使用命名空间,我们需要设置XPath的命名空间上下文:NamespaceContext。这是一个接口类型,我们需要自定义去实现它。例如对应于上文档的三个命名空间,可以如下实现:

Java代码
  1. class CustomNamespaceContext implements NamespaceContext{    
  2.     
  3.         public String getNamespaceURI(String prefix) {    
  4.             if(prefix.equals("ns")){    
  5.                 return "http://www.tibco.com/cdc/liugang/ns";    
  6.             }else if(prefix.equals("tg")){    
  7.                 return "http://www.tibco.com/cdc/liugang/tg";    
  8.             }else if(prefix.equals("df")){    
  9.                 return "http://www.tibco.com/cdc/liugang";    
  10.             }    
  11.             return XMLConstants.NULL_NS_URI;    
  12.         }    
  13.     
  14.         public String getPrefix(String namespaceURI) {    
  15.             return null;    
  16.         }    
  17.     
  18.         public Iterator getPrefixes(String namespaceURI) {    
  19.             return null;    
  20.         }    
  21.             
  22.     }    

 

  1. <strong><strong>class CustomNamespaceContext implements NamespaceContext{  
  2.   
  3.         public String getNamespaceURI(String prefix) {  
  4.             if(prefix.equals("ns")){  
  5.                 return "http://www.tibco.com/cdc/liugang/ns";  
  6.             }else if(prefix.equals("tg")){  
  7.                 return "http://www.tibco.com/cdc/liugang/tg";  
  8.             }else if(prefix.equals("df")){  
  9.                 return "http://www.tibco.com/cdc/liugang";  
  10.             }  
  11.             return XMLConstants.NULL_NS_URI;  
  12.         }  
  13.   
  14.         public String getPrefix(String namespaceURI) {  
  15.             return null;  
  16.         }  
  17.   
  18.         public Iterator getPrefixes(String namespaceURI) {  
  19.             return null;  
  20.         }  
  21.           
  22.     }</strong></strong>  

方法名都非常直观。这里只实现第一个方法。 这样,如果要查找命名空间是缺省,元素名为computer的所有元素,可以如下实现:

Java代码
  1. XPathFactory xPathFactory = XPathFactory.newInstance();    
  2. XPath xpath = xPathFactory.newXPath();    
  3. xpath.setNamespaceContext(new CustomNamespaceContext());    
  4. XPathExpression compile = xpath.compile("//df:computer");    
  5. NodeList list = (NodeList) compile.evaluate(document,XPathConstants.NODESET);    
  6. for(int i = 0;i  
  7.     Node item = list.item(i);    
  8.     System.out.println(item.getNodeName()+"  "+item.getNodeValue());    
  9. }    

 

  1. <strong><strong>        XPathFactory xPathFactory = XPathFactory.newInstance();  
  2.         XPath xpath = xPathFactory.newXPath();  
  3.         xpath.setNamespaceContext(new CustomNamespaceContext());  
  4.         XPathExpression compile = xpath.compile("//df:computer");  
  5.         NodeList list = (NodeList) compile.evaluate(document,XPathConstants.NODESET);  
  6.         for(int i = 0;i</strong></strong>  

 

  九、其他

 

除此之外,在java中,还可以定义扩展的函数解释器和变量解释器,看XPath的方法:

 

Java代码
  1.     /**  
  2.      *  
  3. Establish a variable resolver. 
  4.   
  5.      *   
  6.      *  
  7. A NullPointerException is thrown if resolver is null. 
  8.   
  9.      *   
  10.      * @param resolver Variable resolver.  
  11.      *   
  12.      *  @throws NullPointerException If resolver is null.  
  13.      */    
  14.     public void setXPathVariableResolver(XPathVariableResolver resolver);    
  15.     
  16.     
  17.     /**  
  18.        *  
  19. Establish a function resolver. 
  20.   
  21.        *   
  22.        *  
  23. A NullPointerException is thrown if resolver is null. 
  24.   
  25.        *   
  26.        * @param resolver XPath function resolver.  
  27.        *   
  28.        * @throws NullPointerException If resolver is null.  
  29.        */    
  30.     public void setXPathFunctionResolver(XPathFunctionResolver resolver);    

 

  1. <strong><strong>    /** 
  2.      * Establish a variable resolver. 
  3.      *  
  4.      * A <code>NullPointerException</code> is thrown if <code>resolver</code> is <code>null</code>. 
  5.      *  
  6.      * @param resolver Variable resolver. 
  7.      *  
  8.      *  @throws NullPointerException If <code>resolver</code> is <code>null</code>. 
  9.      */  
  10.     public void setXPathVariableResolver(XPathVariableResolver resolver);  
  11.   
  12.   
  13.     /** 
  14.        * Establish a function resolver. 
  15.        *  
  16.        * A <code>NullPointerException</code> is thrown if <code>resolver</code> is <code>null</code>. 
  17.        *  
  18.        * @param resolver XPath function resolver. 
  19.        *  
  20.        * @throws NullPointerException If <code>resolver</code> is <code>null</code>. 
  21.        */  
  22.     public void setXPathFunctionResolver(XPathFunctionResolver resolver);</strong></strong>  

具体的可以参看API帮助

分享到:
评论

相关推荐

    Xpath详解.pdf

    XPath 详解 XPath(XML Path Language)是一种基于 XML 的查询语言,用于在 XML 文档中选取节点或者节点集。XPath 使用路径表达式来选取 XML 文档中的节点或者节点集,这些路径表达式和我们在常规的电脑文件系统中...

    XPath详解PDF版

    ### XPath详解 #### 一、XPath简介 XPath是一种在XML文档中查找信息的语言。它用于在XML树结构中导航,并且能够返回所匹配节点或节点集。XPath的强大之处在于其简洁性和灵活性,允许用户轻松地从复杂的XML文档中...

    xpath详解总结-很全面.docx

    XPath 详解总结 XPath 是 W3C 的一个标准,主要目的是为了在 XML1.0 或 XML1.1 文档节点树中定位节点所设计。XPath 是一种表达式语言,返回值可能是节点、节点集合、原子值、节点和原子值的混合等。 XPath 路径...

    xpath详解总结,很全面[参照].pdf

    XPath 详解总结 XPath 是 W3C 的一个标准,它的主要目的是为了在 XML 文档节点树中定位节点。XPath 有两种版本:XPath1.0 和 XPath2.0。XPath2.0 是 XPath1.0 的超集,支持更加丰富的数据类型,并且保持了对 XPath...

    xml_XPATH详解

    XPath是W3C定义的语言和正式的W3C推荐的语言,W3C拥有XML Path Language (XPath) Version 1.0规范。XPath诞生于1999年,作为对XSLT和XPointer语言的补充,但近来已成为流行的独立语言,因为单个XPath表达式可用于...

    jsoup的jar包、xpath所有jar包

    **JSoup与XPath详解** JSoup是一个用于Java的开源库,设计目的是为了处理HTML文档,提取和操作数据。它的核心功能在于提供了一种简洁而强大的API,使得开发者能够方便地解析、遍历以及修改HTML文档。JSoup可以理解...

    Jsoup和Xpath jar包.rar

    **XPath详解** XPath(XML Path Language)是W3C定义的一种在XML文档中查找信息的语言。XPath通过路径表达式在XML文档中找到节点。XPath的主要特性包括: 1. **节点定位**:XPath可以快速准确地定位到XML文档中的...

    DOM4J_xpath

    ### DOM4J与XPath详解 #### 一、DOM4J简介 **DOM4J**是一款由dom4j.org开发的开源XML解析库,专为Java平台设计,它不仅支持DOM和SAX这两种标准的XML解析方式,还兼容JAXP(Java API for XML Processing)。DOM4J以...

    uiautomatorviewer xpath

    【UIAutomatorViewer与XPath详解】 UIAutomatorViewer是Android开发者工具(Android SDK)中用于自动化测试的一个组件,它提供了一个图形化的用户界面,帮助开发者分析Android设备或模拟器上的UI布局。通过可视化的...

    xpath语法详解

    XPath,全称XML Path Language,是一种在XML文档中查找信息的语言。它被设计用来选取XML文档中的节点,包括元素、属性、文本等。XPath基于一套丰富的表达式,这些表达式可以用来查找信息,也可以用于对XML文档进行...

    XPath路径表达式详解

    "XPath路径表达式详解" XPath 是 W3C 的一个标准,旨在在 XML1.0 或 XML1.1 文档节点树中定位节点。XPath 路径表达式是一种表达式语言,返回值可能是节点、节点集合、原子值或节点和原子值的混合等。XPath2.0 是 ...

    Selenium_XPath定位详解

    在网页自动化测试领域,Selenium 是一款非常强大的工具,它允许开发者通过编程方式与网页进行交互,模拟用户操作。...希望这篇"**Selenium_XPath定位详解**"的资料能帮助你深入理解和实践这些技巧。

    Xpth的使用详解

    XPATH 详解 XPATH 是什么? XPATH 是一门在 XML 文档中查找信息的语言,用于在 XML 文档中对元素和属性进行遍历。它是基于 XML 文档的树结构,并提供了浏览树的能力,通过多样的标准来选择节点。XPATH 语言支持在...

    dom4j及xpath软件开发包

    XPath详解: XPath是W3C定义的一种语言,用于在XML文档中找到节点。XPath的关键特性包括: 1. **节点选取**:XPath通过路径表达式来选取XML文档中的节点,如选取所有的`&lt;element&gt;`标签可以用`/element`。 2. **节点...

    web端自动化基础xpath.docx

    3. **XPath详解**: - **基本概念**:XPath是一种查询语言,用于在XML文档中查找信息。 - **XPath与XML/HTML**:尽管XPath最初设计用于XML,但它同样适用于HTML文档。 - **XPath语法**:包括绝对路径、相对路径、...

    XPath基础用法详解

    XPath,全称XML Path Language,是一种在XML文档中查找信息的语言。它被设计用来选取XML文档中的节点,如元素、属性、文本等。XPath基于路径表达式来选取XML文档中的节点,这使得它在处理XML数据时具有强大的功能。...

    XML Xpath路径详解

    ### XML XPath路径详解 #### 一、XPath简介 XPath(XML Path Language)是一种在XML文档中查找信息的语言。它提供了一种快速有效的方式来选择节点或节点集,这使得处理XML数据变得简单直观。 #### 二、XPath路径...

    Python3 xml.etree.ElementTree支持的XPath语法详解

    Python3的xml.etree.ElementTree模块提供了一个XML处理接口,其中包含了对XPath语言的有限支持。XPath是一种在XML文档中查找信息的语言,它允许我们基于元素的名称、属性、文本内容以及它们之间的关系来定位XML节点...

    爬虫理论核心剖析超级实战 大神爬虫高级技术-倾囊相授 爬虫提升+项目实战+数据分析

    ├─5-1 xpath详解.ev4.mp4 ├─5-2 基于python的xpath实现.ev4.mp4 ├─5-3 beautiful soup教程.ev4.mp4 ├─6-1 注册及HttpRequester.ev4.mp4 ├─6-2 利用Request类获取微博数据.ev4.mp4 ├─6-3 利用数据库存储...

Global site tag (gtag.js) - Google Analytics