Hallo,

What package shall I use for XPath? I want wo query for elements and then extract some values around these nodes. Maybe one or more levels higher, some attributes.

javax.xml.xpath is XPath 1.0. Is javax.xml.xpath and org.w3c.dom the write way to go, or are there more modern implementations? org.w3c.dom is very awkward, jdom is alot easier.

Thanks

link|improve this question

71% accept rate
If you want XPath 2.0 you need an external implementation added to your classpath. What is it you need from 2.0? – Thorbjørn Ravn Andersen Jul 8 '11 at 12:04
That's way I don't yet know. It's a very generic tool that accepts xPath as input. So I want something good for the future. Maybe Jaxon? – Franz Kafka Jul 8 '11 at 12:11
In that case why start with the XPath 1.0 in the standard runtime library and make that work first? – Thorbjørn Ravn Andersen Jul 8 '11 at 12:16
Good question, +1. See my answer for two possible tools to use. – Dimitre Novatchev Jul 8 '11 at 12:45
feedback

1 Answer

up vote 3 down vote accepted

You may consider a Java-based XPath 2.0 or XQuery implementation (the XSLT 2.0 choice provides much more powerful functionality), such as Saxon 9.x.

Saxon is open source and one of the highest quality java-based processor so far and I am using it on a daily basis when answering SO XSLT/XPath/XQuery questions. In the documentation you will find good code examples.

The only stand-alone XPath 2.0 implementation I am aware of is PsychoPath, but I am not sure of its quality and usability.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.