is the directory containing the Java executables such as c:\java\bin.
You can add this default CLASSPATH by setting the CLASSPATH environment variable in DOS before starting Windows. If your files are in a directory called c:\MYCLASSES, add the following line to your AUTOEX.EC.BAT: set CLASSPATH=C:\MYCLASSES.
If you are using zipped class files, the command might read the following: set CLASSPATH=C:\JAVAZIP|MYCLASSES.ZIP
[Goto Top]
10. Is there a way to run a Java package?
It is not possible to run a Java package from the Java browser or editor. In order to run a package, you must open the Java console and select "java" from the Tools menu. This brings up the "Run java" dialog. Set the working directory to the package's root directory and enter the dot-qualified name of the main class in the "Parameters" field.
[Goto Top]