Skip to content

Instantly share code, notes, and snippets.

@ichiban
Created August 1, 2011 11:25
Show Gist options
  • Save ichiban/1117969 to your computer and use it in GitHub Desktop.
Save ichiban/1117969 to your computer and use it in GitHub Desktop.
script to see what java.library.path is.
import static java.lang.System.*;
public class WhatIsJavaLibraryPath {
public static void main(String[] args) {
out.println(getProperty("java.library.path"));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment