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

2022-08-31 13:31:41

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

谢谢


答案 1

您只能将文件夹或 jar 文件添加到类装入器中。因此,如果您有一个类文件,则需要先将其放入相应的文件夹结构中。

这是一个相当丑陋的黑客,它在运行时添加到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

反射是访问受保护方法所必需的。如果存在安全管理器,则此操作可能会失败。addURL


答案 2

试试这个尺寸。

private static void addSoftwareLibrary(File file) throws Exception {
    Method method = URLClassLoader.class.getDeclaredMethod("addURL", new Class[]{URL.class});
    method.setAccessible(true);
    method.invoke(ClassLoader.getSystemClassLoader(), new Object[]{file.toURI().toURL()});
}

这将编辑系统类装入器以包含给定的库 jar。它非常丑陋,但它有效。


推荐