13

Class.forName(String name)我最近一直在搞乱 java 中的ClassLoaders ,试图测试使用动态加载类的代码(使用ClassLoader.

我有自己的自定义ClassLoader设置,应该可以配置为ClassNotFoundException在尝试加载给定类时抛出 a 。

public class CustomTestClassLoader extends ClassLoader {
    private static String[] notAllowed = new String[]{};
    public static void setNotAllowed(String... nonAllowedClassNames) {
        notAllowed = nonAllowedClassNames;
    }
    public static String[] getNotAllowed() {
        return notAllowed;
    }
    public CustomTestClassLoader(ClassLoader parent){super(parent);}
    @Override
    protected Class<?> loadClass(String name, boolean resolve) throws ClassNotFoundException {
        for (String s : notAllowed) {
            if (name.equals(s)) {
                throw new ClassNotFoundException("Loading this class is not allowed for testing purposes.");
            }
        }

        if(name.startsWith("java") || name.startsWith("sun") || getClass().getName().equals(name)) {
            return getParent().loadClass(name);
        }

        Class<?> gotOne = super.findLoadedClass(name);
        if (gotOne != null) {
            return gotOne;
        }

        Class<?> c;
        InputStream in = getParent().getResourceAsStream(name.replace('.', '/')+".class");
        if (in == null) {
            throw new ClassNotFoundException("Couldn't locate the classfile: "+name);
        }
        try {
            byte[] classData = readBytes(in);
            c = defineClass(name, classData, 0, classData.length);
        } catch(IOException e) {
            throw new ClassNotFoundException("Couldn't read the class data.", e);
        } finally {
            try {
                in.close();
            } catch (IOException e) {/* not much we can do at this point */}
        }

        if (resolve) {
            resolveClass(c);
        }
        return c;
    }

    private byte[] readBytes(InputStream in) throws IOException {
        ByteArrayOutputStream out = new ByteArrayOutputStream();
        byte[] buffer = new byte[4194304];
        int read = in.read(buffer);
        while (read != -1) {
            out.write(buffer, 0, read);
            read = in.read(buffer);
        }
        out.close();
        return out.toByteArray();
    }
}

-Djava.system.class.loader=com.classloadertest.test.CustomTestClassLoader用来将其设置classloader为默认值ClassLoader。我希望能够ClassNotFoundException通过禁止使用某些类名来强制使用CustomTestClassLoader.setNotAllowed(String...). 但是,它仅适用于ClassLoader.loadClass,不适用于Class.forName

public void test() {
    ClassLoader loader = this.getClass().getClassLoader();
    CustomTestClassLoader custom = (CustomTestClassLoader)loader; 
    CustomTestClassLoader.setNotAllowed(NAME);
    for (String s : custom.getNotAllowed())
        System.out.println("notAllowed: "+s);
    try {
        System.out.println(Class.forName(NAME));
    } catch (ClassNotFoundException e) {
        System.out.println("forName(String) failed");
    }
    try {
        System.out.println(Class.forName(NAME,false,custom));
    } catch (ClassNotFoundException e) {
        System.out.println("forName(String,boolean,ClassLoader) failed");
    }
    try {
        System.out.println(custom.loadClass(NAME));
    } catch (ClassNotFoundException e) {
        System.out.println("ClassLoader.loadClass failed");
    }
}

现在我预计所有三个尝试块都会失败,因为文档Class.forName说它使用ClassLoader调用者的(在这个测试中应该是自定义/加载器)。但是,只有最后一个 try 块失败。这是我得到的输出:

notAllowed: com.classloadertest.test.Test
class com.classloadertest.test.Test
class com.classloadertest.test.Test
ClassLoader.loadClass failed

Class.forName真的用吗classloader?如果是这样,哪些方法?它似乎正在使用本机调用,所以我不知道它在幕后做了什么。

当然,如果有人知道测试Class.forName()呼叫的任何替代方法,也将不胜感激。

4

1 回答 1

0

Class.forName()使用从中调用它的类的类加载器(例如,在您的情况下是包含该test()方法的类)。因此,如果您在不同的环境中运行它,这将导致问题。

更新ClassLoader 将用于Class.forName()加载你的Test类。这可能是解决方案:它可能是一个 Eclipse 定义的类加载器,它可以访问你的类,所以它会加载它。尽管它的父(或根)类加载器有明确的规则来禁止加载该类。

我仍然建议为这个实例创建一个包装类。你应该用你的加载那个类CustomTestClassLoader,然后你可以Class.forName()在那个类中使用。

于 2013-01-16T12:00:18.637 回答