在类路径外的jar中动态加载顶级类

时间:2015-06-24 01:17:36

标签: java jar classloader dynamically-generated dynamic-class-loaders

更新 - 我项目中的所有文件现在都声明了相同的包。但是,我加载的jar必须在类路径之外。我已经尝试了child.loadClass(className)Class.forName(className, false, child);,但他们似乎都没有找到它。

我正在编写一个程序,希望以jar形式获取插件或模块,并将它们用作嵌入类路径中。

我在这里和其他网站上看到了很多类似的问题,所以我为复制道歉。但是,到目前为止,我所看到的每一个答案都没有奏效。我做错了吗?

我有一个装满了罐子的文件夹。我知道每个jar都有一个扩展我的Module类的顶级类。但是,我不知道这些课程叫什么。

首先,我找到目录中的所有文件。这很好。然后,对于每个文件,我尝试使用以下代码获取其顶级类的实例:

(首先它打开jar作为zip来获取所有类的名称,然后查看名称以判断它是否是顶级类,然后,如果是,则应该加载,实例化并将其归还。)

private static Module jarLoader(String jar){
    try{
        ZipInputStream zip = new ZipInputStream(new FileInputStream(ModulesDir+"/"+jar));
        URL[] myJarFile = new URL[]{new URL("jar","","file:"+ModulesDir)};
        URLClassLoader child = new URLClassLoader (myJarFile , Main.class.getClassLoader());
        for (ZipEntry entry = zip.getNextEntry(); entry != null; entry = zip.getNextEntry()) {
            if (!entry.isDirectory() && entry.getName().endsWith(".class")) {
                // This ZipEntry represents a class. Now, what class does it represent?
                String className = entry.getName().replace('/', '.'); // including ".class"
                className = className.substring(0, className.length() - ".class".length());


                String[] classNameParts = className.replace('$', ':').split(":");//I don't know why i have to do this, but it won't split on "$"
                if(classNameParts.length == 1){
                    System.out.println("trying to load "+className);
                    Class classToLoad = Class.forName(className, false, child);
                    System.out.println("loaded class "+classToLoad.getName());
                    if(classToLoad.getSuperclass() == Module.class){
                        Module instance = (Module) classToLoad.newInstance();
                        return instance;
                    }
                }
            }
        }
        zip.close();
    }catch (Exception e){
        e.printStackTrace();
    }
    return null;
}

它到达"试图加载......"它会按照我的预期显示该类的名称,然后抛出java.lang.ClassNotFoundException

当我将它放在源目录中的.java文件中时,使用相同的名称加载该类工作正常,但它不会从jar中获取它。

我做错了吗?我怀疑类名可能需要某种前缀或后缀,但我无法弄清楚是什么。

谢谢你的帮助!

2 个答案:

答案 0 :(得分:0)

throw ClassNotFoundException是你的加载jar文件没有添加到类路径中,下面的代码没有成功加载你的jar文件。

URL[] myJarFile = new URL[]{new URL("jar","","file:"+ModulesDir)};
        URLClassLoader child = new URLClassLoader (myJarFile , Main.class.getClassLoader());

应该是这样的:

   URL[] myJarFile = new URL[]{new URL("jar","",jarFilePath)};

   URLClassLoader child = new URLClassLoader (myJarFile, this.getClass().getClassLoader());

javac编译类时,内部类将以完整路径表示,并由 $ 分割,例如com/hello/world/TT$InnerClass.class

完整样本:

 private void jarLoader(){
        try{
            String ModulesDir = "./test/test.jar";
            ZipInputStream zip = new ZipInputStream(new FileInputStream(ModulesDir));

            URL[] myJarFile = new URL[]{new URL("jar","",ModulesDir)};

            URLClassLoader child = new URLClassLoader (myJarFile , this.getClass().getClassLoader());

            for (ZipEntry entry = zip.getNextEntry(); entry != null; entry = zip.getNextEntry()) {
                if (!entry.isDirectory() && entry.getName().endsWith(".class")) {
                    // This ZipEntry represents a class. Now, what class does it represent?
                    String className = entry.getName().replace('/', '.'); // including ".class"
                    className = className.substring(0, className.length() - ".class".length());


                    String[] classNameParts = className.replace('$', ':').split(":");//I don't know why i have to do this, but it won't split on "$"
                    if(classNameParts.length == 1){
                        System.out.println("trying to load "+className);
                        Class classToLoad = Class.forName(className, true, child);
                        System.out.println("loaded class "+classToLoad.getName());
                    }
                }
            }
            zip.close();
        }catch (Exception e){
            e.printStackTrace();
        }
    } 

答案 1 :(得分:0)

建议的所有内容似乎都不起作用,因为我需要加载的文件在我的类路径之外。

This answer可以使用