我的项目设置遵循Standard Directory Layout(不使用Maven):
src/main
| java
| resources
| library.dll
原生DLL位于资源文件夹中,源文件位于java文件夹中。 resources文件夹是Java类路径的成员。
我现在想要加载DLL而不必设置JRE -Djava.library.path
选项或设置PATH
变量,这样只需双击即可启动生成的jar文件。
是否可以将资源文件夹添加到库搜索路径,而无需在运行jar文件时进行其他配置?
例如。设置类似于清单中的Class-Path
?
答案 0 :(得分:3)
我在JNativeHook做了类似的事情,你需要一些帮助代码来确定正确的arch和os来加载代码(参见NativeSystem Class)
// The following code covered under the GNU Lesser General Public License v3.
static {
String libName = System.getProperty("jnativehook.lib.name", "JNativeHook");
try {
// Try to load the native library assuming the java.library.path was
// set correctly at launch.
System.loadLibrary(libName);
}
catch (UnsatisfiedLinkError linkError) {
// Get the package name for the GlobalScreen.
String basePackage = GlobalScreen.class.getPackage().getName().replace('.', '/');
// Compile the resource path for the
StringBuilder libResourcePath = new StringBuilder("/");
libResourcePath.append(basePackage).append("/lib/");
libResourcePath.append(NativeSystem.getFamily()).append('/');
libResourcePath.append(NativeSystem.getArchitecture()).append('/');
// Get what the system "thinks" the library name should be.
String libNativeName = System.mapLibraryName(libName);
// Hack for OS X JRE 1.6 and earlier.
libNativeName = libNativeName.replaceAll("\\.jnilib$", "\\.dylib");
// Slice up the library name.
int i = libNativeName.lastIndexOf('.');
String libNativePrefix = libNativeName.substring(0, i) + '-';
String libNativeSuffix = libNativeName.substring(i);
String libNativeVersion = null;
// This may return null in some circumstances.
InputStream libInputStream = GlobalScreen.class.getResourceAsStream(libResourcePath.toString().toLowerCase() + libNativeName);
if (libInputStream != null) {
try {
// Try and load the Jar manifest as a resource stream.
URL jarFile = GlobalScreen.class.getProtectionDomain().getCodeSource().getLocation();
JarInputStream jarInputStream = new JarInputStream(jarFile.openStream());
// Try and extract a version string from the Manifest.
Manifest manifest = jarInputStream.getManifest();
if (manifest != null) {
Attributes attributes = manifest.getAttributes(basePackage);
if (attributes != null) {
String version = attributes.getValue("Specification-Version");
String revision = attributes.getValue("Implementation-Version");
libNativeVersion = version + '.' + revision;
}
else {
Logger.getLogger(GlobalScreen.class.getPackage().getName()).warning("Invalid library manifest!\n");
}
}
else {
Logger.getLogger(GlobalScreen.class.getPackage().getName()).warning("Cannot find library manifest!\n");
}
}
catch (IOException e) {
Logger.getLogger(GlobalScreen.class.getPackage().getName()).severe(e.getMessage());
}
try {
// The temp file for this instance of the library.
File libFile;
// If we were unable to extract a library version from the manifest.
if (libNativeVersion != null) {
libFile = new File(System.getProperty("java.io.tmpdir"), libNativePrefix + libNativeVersion + libNativeSuffix);
}
else {
libFile = File.createTempFile(libNativePrefix, libNativeSuffix);
}
byte[] buffer = new byte[4 * 1024];
int size;
// Check and see if a copy of the native lib already exists.
FileOutputStream libOutputStream = new FileOutputStream(libFile);
// Setup a digest...
MessageDigest sha1 = MessageDigest.getInstance("SHA-1");
DigestInputStream digestInputStream = new DigestInputStream(libInputStream, sha1);
// Read from the digest stream and write to the file steam.
while ((size = digestInputStream.read(buffer)) != -1) {
libOutputStream.write(buffer, 0, size);
}
// Close all the streams.
digestInputStream.close();
libInputStream.close();
libOutputStream.close();
// Convert the digest from byte[] to hex string.
String sha1Sum = new BigInteger(1, sha1.digest()).toString(16).toUpperCase();
if (libNativeVersion == null) {
// Use the sha1 sum as a version finger print.
libNativeVersion = sha1Sum;
// Better late than never.
File newFile = new File(System.getProperty("java.io.tmpdir"), libNativePrefix + libNativeVersion + libNativeSuffix);
if (libFile.renameTo(newFile)) {
libFile = newFile;
}
}
// Set the library version property.
System.setProperty("jnativehook.lib.version", libNativeVersion);
// Load the native library.
System.load(libFile.getPath());
Logger.getLogger(GlobalScreen.class.getPackage().getName())
.info("Library extracted successfully: " + libFile.getPath() + " (0x" + sha1Sum + ").\n");
}
catch (IOException e) {
throw new RuntimeException(e.getMessage(), e);
}
catch (NoSuchAlgorithmException e) {
throw new RuntimeException(e.getMessage(), e);
}
}
else {
Logger.getLogger(GlobalScreen.class.getPackage().getName())
.severe("Unable to extract the native library " + libResourcePath.toString().toLowerCase() + libNativeName + "!\n");
throw new UnsatisfiedLinkError();
}
}
}
答案 1 :(得分:2)
有一个旧的黑客仍然可以在今天(1.7.0_55和1.8.0_05)工作,让你做到 使用System.setProperty()进行的运行时更新 JVM注意到了这一变化。通常,您执行以下操作:
System.setProperty("java.library.path", yourPath);
Field sysPath = ClassLoader.class.getDeclaredField( "sys_paths" );
sysPath.setAccessible( true );
sysPath.set( null, null );
System.loadLibrary(libraryName);
Google java sys_paths 并查找有关此技术的文章。
注意处理错误/异常。 根据需要恢复原始路径。
答案 2 :(得分:0)
我想提供一个替代解决方案,因为@ Java42的答案不是可移植的(取决于JVM),并且从Oracle / OpenJDK的Java 12开始不起作用。
您应该使用自己的自定义ClassLoader
实现。在ClassLoader
中有一种方法findLibary(String libname)
。此方法将完整路径返回到要加载的库。可用于在任意位置加载库。
public class MyClassLoader extends ClassLoader {
@Override
protected String findLibrary(String libname) {
return "/actual/path/to/library.so";
// or return null if unknown, then the path will be searched
}
}
下一步是定制JVM使用的ClassLoader
。因此,请尽快在代码中将其设置为当前线程contextClassLoader
:
public static void main(String[] args) {
Thread.currentThread().setContextClassLoader(new StarterClassLoader());
// ... your code
}