从JAR文件中加载DLL

时间:2018-06-12 12:49:12

标签: java

我想使用System.load()来加载JAR中的DLL文件。 我试过了

URL dllPath = MyClass.class.getResource("path/to/dll/folder");
System.load(dllPath.getPath().replace("file:/","")+"/"+dllName);

我明白了:

  

线程“main”中的异常java.lang.UnsatisfiedLinkError:无法加载库:path / to / jar / thejar.jar!/ path / to / dll

有什么想法吗?

0 个答案:

没有答案