Created
August 1, 2011 11:25
-
-
Save ichiban/1117969 to your computer and use it in GitHub Desktop.
script to see what java.library.path is.
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
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