Skip to content

Instantly share code, notes, and snippets.

@Rek3650
Created June 9, 2014 12:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Rek3650/4d0dcbd199e08546d629 to your computer and use it in GitHub Desktop.
Save Rek3650/4d0dcbd199e08546d629 to your computer and use it in GitHub Desktop.
String property = System.getProperty("java.library.path");
StringTokenizer parser = new StringTokenizer(property, ";");
while (parser.hasMoreTokens()) {
System.err.println(parser.nextToken());
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment