0

社区!如果你能帮助我解决我的问题,那就太好了。

我有一个自定义类加载器,它将成为java.system.class.loader- 它包含在哪里可以找到类的 URL。像这样:

public class TestSystemClassLoader extends URLClassLoader {

    public TestSystemClassLoader(ClassLoader parent) {
    super(classpath(), parent);
    }

    private static URL[] classpath() {
    try {
        // I got junit-4.8.2.jar under this url.
        URL url = new File("D:\\Work\\lib\\junit-4\\").toURI().toURL();
        return new URL[] { url };
    }
    catch (MalformedURLException e) {
        throw new IllegalArgumentException(e);
    }
    }
}

然后我使用 -Djava.system.class.loader=TestSystemClassLoader eg.TestMain 运行 java(JDK6),其中 eg.TestMain' 主要:

public static void main(String[] args) throws Exception {
    // here I got system CL which is what I want.
ClassLoader cl = Thread.currentThread().getContextClassLoader();
    // here I got: "Exception in thread "main" java.lang.ClassNotFoundException: org.junit.runners.JUnit4"
Class<?> clazz = Class.forName("org.junit.runners.JUnit4", true, cl);
}

让我生气的是,如果我解压/解压/解压 junit-4.8.2.jar - 那么 eg.TestMain 就可以了!

问题是 - 如何告诉 java(JDK6) 我希望整个目录位于类路径中,即位于目录中的任何文件。

提前致谢!

4

1 回答 1

0

找到所有的罐子并添加它们:

private static URL[] classpath() {
    try {
        File file = new File("D:\\Work\\lib\\junit-4\\");
        List<URL> urls = new ArrayList<URL>();
        for (File f : file.listFiles()) {
            if (f.isFile() && f.getName().endsWith(".jar")) {
                urls.add(f.toURI().toURL());
            }
        }

        return urls.toArray(new URL[0]);
    }
    catch (MalformedURLException e) {
        throw new IllegalArgumentException(e);
    }
}
于 2011-10-02T18:53:25.983 回答