Skip to content

Instantly share code, notes, and snippets.

@tedheich
Created November 21, 2009 00:08
Show Gist options
  • Save tedheich/239895 to your computer and use it in GitHub Desktop.
Save tedheich/239895 to your computer and use it in GitHub Desktop.
class Diagnostics {
public static void main(String []args) {
System.out.println("JAVA CLASSPATH = " + System.getProperty("java.class.path"));
System.out.println("LIBRARY PATH = " + System.getProperty("java.library.path"));
System.out.println("EXT DIRS = " + System.getProperty("java.ext.dirs"));
System.out.println("PATH SEPARATOR = " + System.getProperty("java.path.separator"));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment