Java Tutorial/Development/JNI — различия между версиями
Admin (обсуждение | вклад) м (1 версия) |
|
(нет различий)
|
Текущая версия на 15:30, 31 мая 2010
If the DLL is in the CLASSPATH then you don"t need to specify a PATH.
Runtime.getRuntime().load("d:/directoryX/subDirY/MyDll.dll");
Load a DLL
System.loadLibrary("d:\\directoryX\\subDirY\\MyDll.dll")
Specify through the JVM command line the location where to find the JNI DLL to be loaded
java -Djava.library.path=c:/JNI