Java.lang.NoClassDefFoundError: org / apache / xpath / XPathAPI

I am executing a class in eclipse via main, and as a result I get this error

java.lang.NoClassDefFoundError: org/apache/xpath/XPathAPI 

I am using jRE6.

Please help me resolve this.

+4
source share
2 answers

Make sure you have xalan-2.7.1.jar in the build path.

http://mirrors.ibiblio.org/pub/mirrors/maven2/xalan/xalan/2.7.1/xalan-2.7.1.jar

+8
source

You must add apache xpath library to your class path.

+3
source

All Articles