Here you can find the source of xpathNode(Node node, String xpath)
public static Node xpathNode(Node node, String xpath) throws XPathExpressionException
//package com.java2s; /*/*w w w.ja va2 s .co m*/ FatRat download manager http://fatrat.dolezel.info Copyright (C) 2006-2011 Lubos Dolezel <lubos a dolezel.info> This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 2 as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ import javax.xml.xpath.XPath; import javax.xml.xpath.XPathConstants; import javax.xml.xpath.XPathExpression; import javax.xml.xpath.XPathExpressionException; import javax.xml.xpath.XPathFactory; import org.w3c.dom.Node; public class Main { static final XPathFactory factory = XPathFactory.newInstance(); public static Node xpathNode(Node node, String xpath) throws XPathExpressionException { return (Node) expr(xpath).evaluate(node, XPathConstants.NODE); } public static XPathExpression expr(String xpathStr) throws XPathExpressionException { XPath xpath = factory.newXPath(); return xpath.compile(xpathStr); } }