0

我正在尝试使用我发现的THIS方法在运行时将 Jar 动态添加到我的程序类路径中,因为它似乎对很多人都有效。使用addPlugin()时会抛出一个NoSuchMethodException(在下面的代码中注释)。

有人可以告诉我为了让它工作我缺少什么吗?我对此不太熟悉,我之前尝试过查找它。

public final class PluginLoader {
    private static final Class[] _PARAMS = new Class[] {URL.class};

    public static void addPlugin(File plugin) throws PluginException {
        URLClassLoader plLoader = (URLClassLoader)ClassLoader.getSystemClassLoader();
        Class plClass = URLClassLoader.class;
        try {
                Method m = plClass.getDeclaredMethod("addPlugin", _PARAMS); //ERROR HERE
                m.setAccessible(true);
                m.invoke(plLoader, new Object[] {plugin.toURI().toURL()});
        } catch (Exception ex) {
                ex.printStackTrace();
                throw new PluginException("ERROR: Could not add plugin '" + plugin.getName() + "' to System ClassLoader");
        }
    }
}

用法:

PluginLoader.addPlugin(new File("../path/to/jar.jar"));
Constructor<?> cs = ClassLoader.getSystemClassLoader().loadClass("my.main.class.Main").getConstructor(String.class);
4

1 回答 1

0

改变:

Method m = plClass.getDeclaredMethod("addPlugin", _PARAMS);

到:

Method m = plClass.getDeclaredMethod("addURL", _PARAMS);
于 2013-10-24T03:15:57.397 回答