繁体   English   中英

包装后反射不起作用

[英]Reflection doesn't work after packing

我在堆栈溢出这里得到此代码。 这是一个很好的选择,但仅适用于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文件不再起作用时,我也没有收到任何错误消息。

当所有资源打包在一个jar中时,不再有文件。

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

或者,您可以使用一些库,请参见可以使用反射找到包中的所有类吗?

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM