Skip to content

Instantly share code, notes, and snippets.

@laszlomiklosik
Created November 22, 2011 08:02
Show Gist options
  • Save laszlomiklosik/1385144 to your computer and use it in GitHub Desktop.
Save laszlomiklosik/1385144 to your computer and use it in GitHub Desktop.
Listing the Java classpath related info
LOGGER.info("Classpath: '" + System.getProperty( "java.class.path" ) + "'" );
LOGGER.info("Ext dirs: '" + System.getProperty( "java.ext.dirs" ) + "'" );
LOGGER.info("Library path: '" + System.getProperty( "java.library.path" ) + "'" );
LOGGER.info("Path separator: '" + System.getProperty( "path.separator" ) + "'" );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment