Java Tutorial/Development/JNI — различия между версиями

Материал из Java эксперт
Перейти к: навигация, поиск
м (1 версия)
 
(нет различий)

Версия 17:44, 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