Created
November 22, 2011 08:02
-
-
Save laszlomiklosik/1385144 to your computer and use it in GitHub Desktop.
Listing the Java classpath related info
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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