我想使用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
有什么想法吗?