gpt4 book ai didi

java - 在运行时将文件添加到 java 类路径

转载 作者:IT老高 更新时间:2023-10-28 13:53:35 25 4
gpt4 key购买 nike

是否可以在运行时将文件(不一定是 jar 文件)添加到 java 类路径。具体来说,该文件已经存在于类路径中,我想要的是我是否可以将此文件的修改副本添加到类路径中。

谢谢,

最佳答案

您只能将文件夹或 jar 文件添加到类加载器。所以如果你有一个单独的类文件,你需要先把它放到合适的文件夹结构中。

Here是一个相当丑陋的 hack,它在运行时添加到 SystemClassLoader:

import java.io.IOException;
import java.io.File;
import java.net.URLClassLoader;
import java.net.URL;
import java.lang.reflect.Method;

public class ClassPathHacker {

private static final Class[] parameters = new Class[]{URL.class};

public static void addFile(String s) throws IOException {
File f = new File(s);
addFile(f);
}//end method

public static void addFile(File f) throws IOException {
addURL(f.toURL());
}//end method


public static void addURL(URL u) throws IOException {

URLClassLoader sysloader = (URLClassLoader) ClassLoader.getSystemClassLoader();
Class sysclass = URLClassLoader.class;

try {
Method method = sysclass.getDeclaredMethod("addURL", parameters);
method.setAccessible(true);
method.invoke(sysloader, new Object[]{u});
} catch (Throwable t) {
t.printStackTrace();
throw new IOException("Error, could not add URL to system classloader");
}//end try catch

}//end method

}//end class

反射是访问 protected 方法addURL所必需的。如果有 SecurityManager,这可能会失败。

关于java - 在运行时将文件添加到 java 类路径,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1010919/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com