能否请您指教。我有简单的 DLL(在 Windows 7 64 位下)和简单的 Java 代码,JNA 可以访问这个 DLL。问题是当我使用这个 DLL 的 64 位版本时,看起来我无法在我的 DLL 测试函数giveIntGetInt中从 Java 获取参数,而当我使用 32 位 DLL 时我没有问题。我哪里错了?谢谢!
import com.sun.jna.Library;
import com.sun.jna.Native;
import com.sun.jna.Platform;
import com.sun.jna.Pointer;
/** Simple example of native library declaration and usage. */
public class HelloWorld {
public interface simpleDLL extends Library {
simpleDLL INSTANCE = (simpleDLL) Native.loadLibrary(
(Platform.isWindows() ? "simpleDLL" : "simpleDLLLinuxPort"), simpleDLL.class);
int giveIntGetInt(int a); // int giveIntGetInt(int a);
}
public static void main(String[] args) {
int b = simpleDLL.INSTANCE.giveIntGetInt(2);
System.out.println("Hello, World\n");
System.out.println(String.format("Argument %d", b));
}
}
这是 C dll 方法:
int simpleDLL::giveIntGetInt(int a)
{
return 2*a;
}
例如,这是我使用 64 位 dll 获得的:
Hello, World
Argument 181140
32位dll:
Hello, World
Argument 4