I use myeclipse to run my servlet. In doPost function, there is one sentence Tidy tidy = new Tidy();
However, when I run my servlet, I get the error like this:
java.lang.ClassNotFoundException: org.w3c.tidy.Tidy
I have already done this import org.w3c.tidy.Tidy;
Why this error pops out? Is it because I need some configuration in web.xml
?If so, how can I do this?