我最近在Java中乱用了ClassLoaders,尝试使用动态加载类(使用Class.forName(String name)
)和自定义ClassLoader
来测试代码。
我已经设置了自己的自定义ClassLoader
,应该可以配置为在尝试加载给定的类时抛出ClassNotFoundException
。
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");
}
}
现在我预计所有三个try块都会失败,因为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()
电话的其他方法,我们也会非常感激。
答案 0 :(得分:0)
Class.forName()
使用调用它的类的类加载器(例如,在您的情况下,包含test()
方法的类)。因此,如果您在不同的环境中运行它,则会导致问题。
更新该ClassLoader将用于加载Class.forName()
课程的Test
。这可能是解决方案:它可能是一个Eclipse定义的类加载器,可以访问您的类,因此它将加载它。尽管它的父(或根)类加载器有明确的规则禁止加载该类。
我仍然建议为这个实例化创建一个包装类。您应该使用CustomTestClassLoader
加载该类,然后在该类中使用Class.forName()
。