我需要在Java Swings GUI应用程序中访问C#.net dll请帮帮我
答案 0 :(得分:1)
我建议使用Java Native Access(JNA)比使用JNI更容易。
import com.sun.jna.Library;
import com.sun.jna.Native;
/** Simple example of Windows native library declaration and usage. */
public class BeepExampl{
public interface Kernel32 extends Library {
// FREQUENCY is expressed in hertz and ranges from 37 to 32767
// DURATION is expressed in milliseconds
public boolean Beep(int FREQUENCY, int DURATION);
public void Sleep(int DURATION);
}
public static void main(String[] args) {
Kernel32 lib = (Kernel32) Native.loadLibrary("kernel32",
Kernel32.class);
lib.Beep(698, 500);
lib.Sleep(500);
lib.Beep(698, 500);
}
}
假设你有一个带有一些函数的DLL, 创建一个java接口,该接口具有与DLL中的函数相同的方法签名。 例如
public interface NativeExample{
public int method1(String param1);
public boolean mehthod2();
}
以下是加载DLL的方式(假设其名称为NativeLib.dll)
NativeExample nativeExample= (NativeExample)Native.loadLibrary("NativeLib", NativeExample.class);
一旦你有了这个,你可以通过java方法从DLL调用该方法。 折叠|复制代码
`nativeExample.method("test");`
`nativeExample.method2();`
取自 http://www.codeproject.com/Questions/625580/calling-dll-function-java