使用defineClass从字节动态创建类
看来我应该能够使用从 URLClassLoader
派生的类加载器来完成此操作,其中包含 loadClass()
:
public Class loadClass(String className, byte[] classBytes)
throws ClassNotFoundException, NoClassDefFoundError
{
Class result = null;
result = defineClass(className, classBytes, 0, classBytes.length);
classes.put(className, result);
return result;
}
然后我从类文件中读取字节并调用上面的代码加载类方法。我得到这个:
java.lang.NoClassDefFoundError:com/samples/SampleClass(错误名称:com/samples/SampleClass) 在 java.lang.ClassLoader.defineClass1(本机方法) 在 java.lang.ClassLoader.defineClassCond(ClassLoader.java:631) 在 java.lang.ClassLoader.defineClass(ClassLoader.java:615) at java.lang.ClassLoader.defineClass(ClassLoader.java:465)
奇怪的是,名称和“错误名称”是相同的。两者都是正确的包。
如何获得具有正确预期名称的 NoClassDefFoundError
? 可以做到这个defineClass
吗?
使用不推荐使用的形式,没有类名,效果很好:
result = defineClass(classBytes, 0, classBytes.length);
谢谢
It seems like I should be able to do this with a class loader derived from URLClassLoader
that includes a loadClass()
:
public Class loadClass(String className, byte[] classBytes)
throws ClassNotFoundException, NoClassDefFoundError
{
Class result = null;
result = defineClass(className, classBytes, 0, classBytes.length);
classes.put(className, result);
return result;
}
Then I read bytes from a class file and call the above loadClass method. I get this:
java.lang.NoClassDefFoundError: com/samples/SampleClass (wrong name: com/samples/SampleClass)
at java.lang.ClassLoader.defineClass1(Native Method)
at java.lang.ClassLoader.defineClassCond(ClassLoader.java:631)
at java.lang.ClassLoader.defineClass(ClassLoader.java:615)
at java.lang.ClassLoader.defineClass(ClassLoader.java:465)
The odd thing is that the name and the "wrong name" are the same. And both are the correct package.
How is it possible to get NoClassDefFoundError
with the correct expected name?
And is it possible to do this defineClass
?
Using the deprecated form, without the classname, works perfectly:
result = defineClass(classBytes, 0, classBytes.length);
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
javadoc:
参数:
name - 类的预期名称,如果未知,则使用 '.'而不是“/”作为分隔符并且没有尾随“.class”后缀。
尝试将“/”替换为“.”
javadoc:
Parameters:
name - The expected name of the class, or null if not known, using '.' and not '/' as the separator and without a trailing ".class" suffix.
try replace "/" to "."