package does not exist
Hi experts,
I have two java files in C:\raj\Java-Tutorial\Java-Practice\
XMLvalues.java & sax.java
1) In XMLvalues.java .. i have "package samparsing;" declared as package name
2) I am importing this in sax.java as "import samparsing.*;" on the first line of this file.
3) I compiled XMLvalues.java to create a class file.. no compilation error
4) Now compiling sax.java and getting the following error
C:\raj\Java-Tutorial\Java-Practice>javac sax.java
sax.java:1: package samparsing does not exist
import samparsing.*;
my class path is like this
set CLASSPATH=%CLASSPATH%;C:\raj\Java-Tutorial\Java-Practice
Why I am getting this error and what is the problem ? I could not figure out.
Thanks,
-Raj..

