Reputation: 328
I m working on a project which is working great on a machine but on another machine having OS WINDOW 8 when I run same project I got Exception
java.lang.NoClassDefFoundError: org.apache.commons.lang.StringEscapeUtils
It is related to runtime class path but I dont know from where I need to set that. External jar is used here and there is no error in any of file.
Please Suggest
Upvotes: 2
Views: 3826
Reputation: 1547
Since the last version of the ADT eclipse plugin (mine is 22.0.0.v201305140200--675,183), there are problems with external libraries and a common mistake remembers: java.lang.NoClassDefFoundError. To solve this problem you can follow the link in which I give a solution: Could not find class
Upvotes: 2
Reputation: 22493
This error because of your .jar file. Add your jar file in libs folder look at this solution we will solve your problem https://stackoverflow.com/a/12511271/964741
Upvotes: 1