Originally posted by aashini shah:
...what should i do?
First,
you should update your system PATH variable to include c:\jdk1.4\bin so that you don't need to type this all the time. This is covered in step 4 of the JDK
installation instructions (assuming Windows).
Second, you should probably
remove the system CLASSPATH variable. As Henry pointed out, setting this to the JDK's bin directory does nothing, because you shouldn't have class files there. In fact, this preempts
Java's default behavior of looking for classes in the current directory, so it's likely to cause you problems. For background on CLASSPATH, see
Setting the class path.