我有一个C++
代码,我用它编译Visual Studio 2012
为.dll
.
然后,我使用该方法将该库加载到 Java 应用程序中System.loadLibrary
。
我已经做了很多时间,在 Visual Studio 上用旧版本编译库,没有问题。
现在,用 VS2012 编译它我得到这个错误:
Exception in thread "Thread-2" java.lang.UnsatisfiedLinkError: C:\path\to\library.dll: The specified procedure could not be found
我检查了 .dllDependecy Walker
并且没有缺少依赖项。
我真的不知道我能做些什么才能让它发挥作用。
你能给我一些提示吗?