web-dev-qa-db-ja.com

クラスパス内のすべてのクラスを取得します

実行時に CLASSPATH で利用可能なすべてのクラスのリストを取得するにはどうすればよいですか?
Eclipse IDEでは、これを行うには Ctrl+Shift+T
Javaで完了させる方法はありますか?

41
arash

空のStringClassLoader#getResources() に渡すことで、すべてのクラスパスルートを取得できます。

_Enumeration<URL> roots = classLoader.getResources("");
_

次のように File に基づいて URL を構築できます。

_File root = new File(url.getPath());
_

File#listFiles() を使用して、指定されたディレクトリ内のすべてのファイルのリストを取得できます。

_for (File file : root.listFiles()) {
    // ...
}
_

標準の _Java.io.File_ メソッドを使用して、ディレクトリかどうかを確認したり、ファイル名を取得したりできます。

_if (file.isDirectory()) {
    // Loop through its listFiles() recursively.
} else {
    String name = file.getName();
    // Check if it's a .class file or a .jar file and handle accordingly.
}
_

唯一の機能要件に応じて、 Reflectionsライブラリ のほうがはるかに正確だと思います。

53
BalusC

これを行うために私が書いたものを次に示します。クラスパスで何かおかしなことをしていると、すべてが手に入るとは思いませんが、うまくいくようです。実際にクラスをロードするのではなく、クラスの名前を返すだけです。これは、すべてのクラスをメモリにロードしないようにするためです。また、私の会社のコードベースの一部のクラスが間違ったタイミングでロードされると初期化エラーを引き起こしたためです...

public interface Visitor<T> {
    /**
     * @return {@code true} if the algorithm should visit more results,
     * {@code false} if it should terminate now.
     */
    public boolean visit(T t);
}

public class ClassFinder {
    public static void findClasses(Visitor<String> visitor) {
        String classpath = System.getProperty("Java.class.path");
        String[] paths = classpath.split(System.getProperty("path.separator"));

        String javaHome = System.getProperty("Java.home");
        File file = new File(javaHome + File.separator + "lib");
        if (file.exists()) {
            findClasses(file, file, true, visitor);
        }

        for (String path : paths) {
            file = new File(path);
            if (file.exists()) {
                findClasses(file, file, false, visitor);
            }
        }
    }

    private static boolean findClasses(File root, File file, boolean includeJars, Visitor<String> visitor) {
        if (file.isDirectory()) {
            for (File child : file.listFiles()) {
                if (!findClasses(root, child, includeJars, visitor)) {
                    return false;
                }
            }
        } else {
            if (file.getName().toLowerCase().endsWith(".jar") && includeJars) {
                JarFile jar = null;
                try {
                    jar = new JarFile(file);
                } catch (Exception ex) {

                }
                if (jar != null) {
                    Enumeration<JarEntry> entries = jar.entries();
                    while (entries.hasMoreElements()) {
                        JarEntry entry = entries.nextElement();
                        String name = entry.getName();
                        int extIndex = name.lastIndexOf(".class");
                        if (extIndex > 0) {
                            if (!visitor.visit(name.substring(0, extIndex).replace("/", "."))) {
                                return false;
                            }
                        }
                    }
                }
            }
            else if (file.getName().toLowerCase().endsWith(".class")) {
                if (!visitor.visit(createClassName(root, file))) {
                    return false;
                }
            }
        }

        return true;
    }

    private static String createClassName(File root, File file) {
        StringBuffer sb = new StringBuffer();
        String fileName = file.getName();
        sb.append(fileName.substring(0, fileName.lastIndexOf(".class")));
        file = file.getParentFile();
        while (file != null && !file.equals(root)) {
            sb.insert(0, '.').insert(0, file.getName());
            file = file.getParentFile();
        }
        return sb.toString();
    }
}

使用するには:

ClassFinder.findClasses(new Visitor<String>() {
    @Override
    public boolean visit(String clazz) {
        System.out.println(clazz)
        return true; // return false if you don't want to see any more classes
    }
});
19
Andy

Guavaライブラリのcom.google.common.reflectパッケージのユーティリティクラスを利用できます。例えば。特定のパッケージのすべてのクラスを取得するには:

    ClassLoader cl = getClass().getClassLoader();
    Set<ClassPath.ClassInfo> classesInPackage = ClassPath.from(cl).getTopLevelClassesRecursive("com.mycompany.mypackage");

これは簡潔ですが、他の答えが説明しているのと同じ警告が依然として適用されます。 URLClassLoader

7
Matthew Wise

たびたび私はこれを探します。クラスパスですべてを見つけたとしても、特定のクラスローダーがすべてを利用できるとは限らないため(たとえば、DBからクラス定義を直接ロードするプロジェクトに取り組んだことがあるため)、これはやや困難です。

この時点で最善の策は、おそらく春を調べることです。クラスパスのクラスをスキャンして、キックスタートに必要な注釈があるかどうかを確認します。

ここで受け入れられている答えは、開始するのに適した場所です。

スキャンJava注釈

0
Bill K

SpringのPathMatchingResourcePatternResolverを使用することをお勧めします。

IDEまたはファイルシステムからの両方のパッケージを起動するためのトリックを行います:

詳細については、ここでメモを確認してください。

パッケージからリソースを取得する方法

0
Naor Bar