Re: package not found error
First try to understand the usage of Classpath variable.
It specifies the compiler about the location of the class files which are either directly or indirectly involved in the current program execution.
Now try doing this..
First include the downloaded path, where the downloaded class files exist
second , include .(dot) at the end after the semicolon which refers to ur current working folder.
Ex:
c:java> set classpath=c:\com\pack;.;
Re: package not found error
hi
thanks for the details
now its working fine
santosh