使用defineClass从字节动态创建类

发布于 2024-12-10 23:58:38 字数 1021 浏览 2 评论 0原文

看来我应该能够使用从 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

尾戒 2024-12-17 23:58:38

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 "."

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文