Does JDK 6 support all XPath 2.0 features?

like for, sum, if, intersect... and if not, or not entirely, where can I find the details? And if so, where can I find official confirmation?

+5
source share
3 answers

According to javadoc , Java 6 supports XML Path Language (XPath) Version 1.0

+6
source

Java is a programming language, and it does not have direct language constructs specifically designed to evaluate XPath expressions.

It is completely different that some classes may come bundled with a Java distribution that implements the XPath mechanism.

AFAIK, XPath-engine XPath 1.0.

, Java, Saxon, . , , PsychoPath.

+1

I don't know if Java 6 works, but I'm sure Saxon (http://saxon.sourceforge.net/) does.

0
source

All Articles