XPath详解及Java示例代码,xpathjava示例代码
分享于 点击 18874 次 点评:27
XPath详解及Java示例代码,xpathjava示例代码
XPath详解及Java示例代码
- import java.io.IOException;
- import javax.xml.parsers.*;
- import javax.xml.xpath.*;
- import org.w3c.dom.*;
- import org.xml.sax.SAXException;
- public class XpathTest {
- public static void main(String[] args) throws ParserConfigurationException,
- SAXException, IOException, XPathExpressionException {
- DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
- factory.setNamespaceAware(false);
- DocumentBuilder builder = factory.newDocumentBuilder();
- Document doc = builder.parse("C:/Users/Administrator/Desktop/test.xml");
- System.out.println(doc.getChildNodes().getLength());
- XPathFactory xFactory = XPathFactory.newInstance();
- XPath xpath = xFactory.newXPath();
- XPathExpression expr = xpath
- .compile("//name/text()");
- Object result = expr.evaluate(doc, XPathConstants.NODESET);
- NodeList nodes = (NodeList) result;
- System.out.println(nodes.getLength());
- for (int i = 0; i < nodes.getLength(); i++) {
- System.out.println(nodes.item(i).getNodeValue());
- }
- }
- }
一、结点类型 XPath中有七种结点类型:元素、属性、文本、命名空间、处理指令、注释以及文档节点(或成为根节点)。 文档的根节点即是文档结点;对应属性有属性结点,元素有元素结点。
二、常用路径表达式
表达式 | 描述 |
---|---|
nodename | 选取此节点的所有子节点 |
/ | 从根节点选取 |
// | 从匹配选择的当前节点选择文档中的节点,而不考虑它们的位置 |
. | 选取当前节点 |
.. | 选取当前节点的父节点 |
@ | 选取属性 |
- <?xml version="1.0" encoding="ISO-8859-1"?>
- <bookstore>
- <book>
- <title lang="eng">Harry Potter</title>
- <price>29.99</price>
- </book>
- <book>
- <title lang="eng">Learning XML</title>
- <price>39.95</price>
- </book>
- </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.lang.Double
java.lang.String
java.lang.Boolean
org.w3c.dom.NodeList
因此,在使用java的xpathAPI时,需要注意返回类型:
Java代码
[java] view
plaincopy
- public Object evaluate(Object item, QName returnType)throws XPathExpressionException;
- public String evaluate(Object item)throws XPathExpressionException;
- public Object evaluate(InputSource source, QName returnType)throws XPathExpressionException;
- public String evaluate(InputSource source)throws XPathExpressionException;
[java] view plaincopy
- public Object evaluate(Object item, QName returnType)throws XPathExpressionException;
- public String evaluate(Object item)throws XPathExpressionException;
- public Object evaluate(InputSource source, QName returnType)throws XPathExpressionException;
- public String evaluate(InputSource source)throws XPathExpressionException;
- XPathFactory factory = XPathFactory.newInstance();
- XPath xpath = factory.newXPath();
- XPathExpression expression = xpath.compile("/bookstore//book/title/text()");
[java] view plaincopy
- <strong><strong> XPathFactory factory = XPathFactory.newInstance();
- XPath xpath = factory.newXPath();
- XPathExpression expression = xpath.compile("/bookstore//book/title/text()");</strong></strong>
- DocumentBuilderFactory builderFactory = DocumentBuilderFactory.newInstance();
- DocumentBuilder documentBuilder = builderFactory.newDocumentBuilder();
- Document document = documentBuilder.parse(new File("books.xml"));
- NodeList list = (NodeList) expression.evaluate(document,XPathConstants.NODESET);
[java] view plaincopy
- <strong><strong> DocumentBuilderFactory builderFactory = DocumentBuilderFactory.newInstance();
- DocumentBuilder documentBuilder = builderFactory.newDocumentBuilder();
- Document document = documentBuilder.parse(new File("books.xml"));
- NodeList list = (NodeList) expression.evaluate(document,XPathConstants.NODESET);</strong></strong>
最后,我们得到一个title的list值: Java代码 [java] view plaincopy
- for(int i = 0;i<list.getLength();i++){ System.out.println(list.item(i).getNodeValue());
- }
[java] view plaincopy
- <strong><strong> for(int i = 0;i</strong></strong>
- Everyday Italian
- Harry Potter
- XQuery Kick Start
- Learning XML
- <strong><strong>Everyday Italian
- Harry Potter
- XQuery Kick Start
- Learning XML</strong></strong>
- <strong><strong>
- Hello
- </strong></strong>
- <?xml version="1.0" encoding="UTF-8"?>
- <tg:bookstore xmlns:tg="http://www.tibco.com/cdc/liugang"
- xmlns:ns="http://www.tibco.com/cdc/liugang/ns">
- <ns:book>
- <tg:title>Hello</tg:title>
- </ns:book>
- </tg:bookstore>
- local-name()
- namespace-uri()
- name()
- XPathFactory xPathFactory = XPathFactory.newInstance();
- XPath xpath = xPathFactory.newXPath();
- XPathExpression compile = xpath.compile("//*[local-name()='book']");
- NodeList list = (NodeList) compile.evaluate(document,XPathConstants.NODESET);
[java] view plaincopy
- <strong><strong> XPathFactory xPathFactory = XPathFactory.newInstance();
- XPath xpath = xPathFactory.newXPath();
- XPathExpression compile = xpath.compile("//*[local-name()='book']");
- NodeList list = (NodeList) compile.evaluate(document,XPathConstants.NODESET);</strong></strong>
- <?xml version="1.0" encoding="UTF-8"?>
- <bookstore xmlns="http://www.tibco.com/cdc/liugang" xmlns:tg="http://www.tibco.com/cdc/liugang/tg"
- xmlns:ns="http://www.tibco.com/cdc/liugang/ns">
- <ns:book>
- <tg:title>Hello</tg:title>
- </ns:book>
- <computer>
- <id>ElsIOIELdslke-1233</id>
- </computer>
- </bookstore>
[xml] view plaincopy
- <strong><strong>
- Hello
- ElsIOIELdslke-1233
- </strong></strong>
- class CustomNamespaceContext implements NamespaceContext{
- public String getNamespaceURI(String prefix) {
- if(prefix.equals("ns")){
- return "http://www.tibco.com/cdc/liugang/ns";
- }else if(prefix.equals("tg")){
- return "http://www.tibco.com/cdc/liugang/tg";
- }else if(prefix.equals("df")){
- return "http://www.tibco.com/cdc/liugang";
- }
- return XMLConstants.NULL_NS_URI;
- }
- public String getPrefix(String namespaceURI) {
- return null;
- }
- public Iterator getPrefixes(String namespaceURI) {
- return null;
- }
- }
[java] view plaincopy
- <strong><strong>class CustomNamespaceContext implements NamespaceContext{
- public String getNamespaceURI(String prefix) {
- if(prefix.equals("ns")){
- return "http://www.tibco.com/cdc/liugang/ns";
- }else if(prefix.equals("tg")){
- return "http://www.tibco.com/cdc/liugang/tg";
- }else if(prefix.equals("df")){
- return "http://www.tibco.com/cdc/liugang";
- }
- return XMLConstants.NULL_NS_URI;
- }
- public String getPrefix(String namespaceURI) {
- return null;
- }
- public Iterator getPrefixes(String namespaceURI) {
- return null;
- }
- }</strong></strong>
- XPathFactory xPathFactory = XPathFactory.newInstance();
- XPath xpath = xPathFactory.newXPath();
- xpath.setNamespaceContext(new CustomNamespaceContext());
- XPathExpression compile = xpath.compile("//df:computer");
- NodeList list = (NodeList) compile.evaluate(document,XPathConstants.NODESET);
- for(int i = 0;i
- Node item = list.item(i);
- System.out.println(item.getNodeName()+" "+item.getNodeValue());
- }
[java] view plaincopy
- <strong><strong> XPathFactory xPathFactory = XPathFactory.newInstance();
- XPath xpath = xPathFactory.newXPath();
- xpath.setNamespaceContext(new CustomNamespaceContext());
- XPathExpression compile = xpath.compile("//df:computer");
- NodeList list = (NodeList) compile.evaluate(document,XPathConstants.NODESET);
- for(int i = 0;i</strong></strong>
- /**
- *
- Establish a variable resolver.
- *
- *
- A NullPointerException is thrown if resolver is null.
- *
- * @param resolver Variable resolver.
- *
- * @throws NullPointerException If resolver is null.
- */
- public void setXPathVariableResolver(XPathVariableResolver resolver);
- /**
- *
- Establish a function resolver.
- *
- *
- A NullPointerException is thrown if resolver is null.
- *
- * @param resolver XPath function resolver.
- *
- * @throws NullPointerException If resolver is null.
- */
- public void setXPathFunctionResolver(XPathFunctionResolver resolver);
- <strong><strong> /**
- * Establish a variable resolver.
- *
- * A <code>NullPointerException</code> is thrown if <code>resolver</code> is <code>null</code>.
- *
- * @param resolver Variable resolver.
- *
- * @throws NullPointerException If <code>resolver</code> is <code>null</code>.
- */
- public void setXPathVariableResolver(XPathVariableResolver resolver);
- /**
- * Establish a function resolver.
- *
- * A <code>NullPointerException</code> is thrown if <code>resolver</code> is <code>null</code>.
- *
- * @param resolver XPath function resolver.
- *
- * @throws NullPointerException If <code>resolver</code> is <code>null</code>.
- */
- public void setXPathFunctionResolver(XPathFunctionResolver resolver);</strong></strong>
相关文章
- 暂无相关文章
用户点评