Skip to main content

Popularity Report

Total Popularity Score: 0

Loading...
Loading...
Loading...
Loading...
Loading...
Loading...

Rank

Bookmark History

Saved by 3 people (2 private), first by anonymouse user on 2006-05-22


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

% sdkTool -classpath classpath1:classpath2...

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