|
|
Re: classpath question
|
Posted: Mar 16, 2003 8:56 PM
|
|
The problem lies in your CLASSPATh settings. Since your classpath lists current directory (.) first, it checks for Mine.class in current directory first, which is causing the problem. Better move (or keep) the Mine.java somewhere, which is not accessible in CLASSPATH before the actual C:\MyDIR\check . This is solve the problem. Or, you may want to set different class path for compiling the source code and different for running the class. However, the problem lies in your CLASSPATH settings.
Thanks Kishori
|
|