从 JAR 中提取和加载 DLL
2022-09-03 05:41:32
我的 Java 应用程序使用 DLL 库。如何从 JAR 文件中获取工作?
DLL 位于项目的源文件夹中。我必须将它包含在我的JAR中,在运行时(在jar的同一目录中)提取它并加载它。
我的 Java 应用程序使用 DLL 库。如何从 JAR 文件中获取工作?
DLL 位于项目的源文件夹中。我必须将它包含在我的JAR中,在运行时(在jar的同一目录中)提取它并加载它。
在尝试加载之前,您需要将 dll 放在库路径中(推荐)。因此,您必须将其从jar中提取并将其复制到lib路径中。
private void loadLib(String path, String name) {
name = System.mapLibraryName(name); // extends name with .dll, .so or .dylib
InputStream inputStream = null;
OutputStream outputStream = null;
try {
inputStream = getClass().getResourceAsStream("/" + path + name);
File fileOut = new File("your lib path");
outputStream = new FileOutputStream(fileOut);
IOUtils.copy(inputStream, outputStream);
System.load(fileOut.toString());//loading goes here
} catch (Exception e) {
//handle
} finally {
if (inputStream != null) {
try {
inputStream.close();
} catch (IOException e) {
//log
}
}
if (outputStream != null) {
try {
outputStream.close();
} catch (IOException e) {
//log
}
}
}
}
注意:是保存静态方法的类ACWrapper