本文介绍了加载dll库文件时出现问题... java.lang.UnsatisfiedLinkError:无法加载库的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在加载dll文件时,我得到以下异常:

While loading a dll file, I am getting the following exception:

Exception in thread "main" java.lang.UnsatisfiedLinkError:
  D:\Transliteration\rlpnc-3.1.0-sdk-ia32-w32-msvc80\rlp\bin\ia32-w32-msvc80\btrntjni.dll: 
  The system cannot find message text for message number 0x%1 in the message file for %2

at java.lang.ClassLoader$NativeLibrary.load(Native Method)
at java.lang.ClassLoader.loadLibrary0(Unknown Source)
at java.lang.ClassLoader.loadLibrary(Unknown Source)
at java.lang.Runtime.load0(Unknown Source)
at java.lang.System.load(Unknown Source)
at com.basistech.util.internal.Native.loadLibrary(Unknown Source)
at com.basistech.rnt.jni.<clinit>(Unknown Source)
at com.basistech.rnt.RNTEnvironment.<init>(Unknown Source)
at SampleTranslator.<init>(TranslateNameSample.java:88)
at TranslateNameSample.main(TranslateNameSample.java:62)

不知道问题的根本原因。任何人都可以帮助我解决这个问题。

not sure about the root cause of the issue. Can anybody help me out in resolving this issue.

谢谢,
Bhaskar

Thanks,Bhaskar

推荐答案

我正在为制作您尝试使用的产品的公司工作。我们已经看到这个错误,因为它与我们一起提供的底层不兼容的版本安装,因为缺少依赖的DLL,如其他人所建议的那样。请随时联系我们的支持团队以获得更多帮助。

I work for the company that makes the product you're trying to use. We've seen this error when it's been installed against an incompatible version of the underlying layer we ship with it, because of missing dependent DLLs as others have suggested. Feel free to contact our support team for more help.

这篇关于加载dll库文件时出现问题... java.lang.UnsatisfiedLinkError:无法加载库的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-13 22:05