使用 ASMifierClassVisitor 时出错

发布于 2024-10-01 10:29:31 字数 440 浏览 3 评论 0原文

我想使用 ASMifierClassVisitor 工具来获取创建类的 asm 代码,但是当我使用它时,我收到错误

java.lang.NoSuchMethodError: org.objectweb.asm.ClassReader.accept(Lorg/objectweb/asm/ClassVisitor;[Lorg/objectweb/asm/Attribute;Z)V
        at org.objectweb.asm.util.ASMifierClassVisitor.main(Unknown Source)

我使用了代码,

ASMifierClassVisitor.main(new String[]{testforloops.Equivalent.class.getName()});

这里有什么问题吗?

I wanted to use ASMifierClassVisitor tool to get the asm code of creating a class but when I use it I get the error

java.lang.NoSuchMethodError: org.objectweb.asm.ClassReader.accept(Lorg/objectweb/asm/ClassVisitor;[Lorg/objectweb/asm/Attribute;Z)V
        at org.objectweb.asm.util.ASMifierClassVisitor.main(Unknown Source)

I used the code

ASMifierClassVisitor.main(new String[]{testforloops.Equivalent.class.getName()});

what is the problem here?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

×纯※雪 2024-10-08 10:29:31

我纠正了这个问题。当我删除以前版本的 ASM 时,我的类路径中的 asm-util-3.3 之前有 asm-util-2.3 我可以毫无问题地运行代码

I corrected the issue. I had asm-util-2.3 before asm-util-3.3 in my classpath when I removed previous version of ASM I could run the code without any problem

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