we all know that "-D java.library.path=XXX" pass a library path to the
JVM when it starts
However what difference between "java.library.path" and
"java.class.path" ? , I know that any jar files which the program
used , must specify the path using
java.class.path. what is java.library.path used for ,many thanks
Gordon Beaton - 16 Jul 2007 16:52 GMT
> what is java.library.path used for
Loading native code (e.g. .so and .dll files).
/gordon
--