ENH: add some java code to try and find the system path

This commit is contained in:
Bill Hoffman
2004-09-24 15:40:40 -04:00
parent e63ea0a6d2
commit 0a26f8d46c
2 changed files with 16 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
class CMakeCheckJavaPath
{
public static void main(String args[])
{
System.out.println(System.getProperty("sun.boot.class.path", "(none)"));
}
}