在java中加载DLL文件

时间:2015-07-21 10:11:09

标签: java

在RCP应用程序中使用System.loadLibrary方法加载dll文件时,只要我从Eclipse本身启动应用程序,它就会正常工作。但是当导出RCP应用程序并从导出的代码启动时,我得到了这个例外:

ERROR - Native code library failed to load. See the chapter on Dynamic Linking Problems in the SWIG Java documentation for help. Try using a 32 bit JRE also.
java.lang.UnsatisfiedLinkError: D:\ExportTest\eclipse\plugins\<application_name>\ext\securityinterfaceX86\SecurityInterface-x86.dll: Can't find dependent libraries

1 个答案:

答案 0 :(得分:6)

您正在从64位JVM加载32位C ++二进制文件。您需要使用32位JVM或者使用混合模式JVM。使用Eclipse使用的相同JRE,你会没事的。