包装后反射不起作用

时间:2017-05-16 12:04:46

标签: java reflection jar

我在堆栈溢出时得到此代码。它是一个很好的但只适用于Netbeans。生成.jar文件后,我不再工作了,也没有给我错误信息。

 /**
 * Scans all classes accessible from the context class loader which belong
 * to the given package and subpackages.
 *
 * @param packageName The base package
 * @return The classes
 * @throws ClassNotFoundException
 * @throws IOException
 */
public Class[] getClasses(String packageName)
        throws ClassNotFoundException, IOException {
    ClassLoader classLoader = Thread.currentThread().getContextClassLoader();
    assert classLoader != null;
    String path = packageName.replace('.', '/');
    Enumeration<URL> resources = classLoader.getResources(path);
    List<File> dirs = new ArrayList<File>();
    while (resources.hasMoreElements()) {
        URL resource = resources.nextElement();
        dirs.add(new File(resource.getFile()));
    }
    ArrayList<Class> classes = new ArrayList<Class>();
    for (File directory : dirs) {
        classes.addAll(findClasses(directory, packageName));
    }
    return classes.toArray(new Class[classes.size()]);
}

/**
 * Recursive method used to find all classes in a given directory and
 * subdirs.
 *
 * @param directory The base directory
 * @param packageName The package name for classes found inside the base
 * directory
 * @return The classes
 * @throws ClassNotFoundException
 */
private List<Class> findClasses(File directory, String packageName) throws ClassNotFoundException {
    List<Class> classes = new ArrayList<Class>();
    if (!directory.exists()) {
        return classes;
    }
    File[] files = directory.listFiles();
    for (File file : files) {
        if (file.isDirectory()) {
            assert !file.getName().contains(".");
            classes.addAll(findClasses(file, packageName + "." + file.getName()));
        } else if (file.getName().endsWith(".class")) {
            classes.add(Class.forName(packageName + '.' + file.getName().substring(0, file.getName().length() - 6)));
        }
    }
    return classes;
}

这段代码封装在另一个项目中,用作我的JMenu库。但只适用于netbeans。我不明白为什么。

更新

我会尝试更好地解释。

我有一个与JMenu合作的项目,它通过反射来读取其他项目中的类。该项目将用作其他项目的库。当它在netbeans上运行时运行良好,但是当生成.jar文件时不再有效并且我没有收到任何错误消息。

1 个答案:

答案 0 :(得分:1)

当所有资源都装在一个jar中时,就再没有文件了。

而是使用this.class.getResource()this.class.getResourceAsStream()

或者您可以使用某些库,请参阅Can you find all classes in a package using reflection?