Setting the class path
Popularity Report
![]() |
|||
![]() |
|||
![]() |
|||
![]() |
|||
![]() |
|||
![]() |
URL Tag Cloud
Bookmark History
Saved by 3 people (2 private), first by anonymouse user on 2006-05-22
- Redertseng on 2008-03-28 - Tags java
- Xtraeme on 2006-06-17 - Tags digipen , gen450 , gen450 - life sim - 2 , school , sem 9
- Pitosalas on 2006-05-22 - Tags jarsandinstallation , java , programming , system:imported
Public Sticky notes
The
-classpath option is preferred because you
can set it individually for each application without affecting other
applications and without other applications modifying its value.
Highlighted by redertseng
Class paths to the .jar, .zip or .class files.
Highlighted by redertseng
Each classpath should end with a filename or directory depending on
what you are setting the class path to:
- For a .jar or .zip file that contains .class files, the class path ends with the name of the .zip or .jar file.
- For .class files in an unnamed package, the class path ends with the directory that contains the .class files.
- For .class files in a named package, the class path ends with the directory that contains the "root" package (the first package in the full package name).
Highlighted by redertseng
Multiple path entries are separated by colons.
Highlighted by redertseng
if you want to include the current directory in the search
path, you must include "." in the new settings.
Highlighted by redertseng


Public Comment