有没有工具可以生成ASM ClassWriter代码?
我想创建动态java类,我使用模板生成源代码,然后使用jasper jdt进行编译。但是现在,我想删除对jdt的依赖,直接用ASM创建类字节码。
源代码大约200行,有什么工具可以帮助用ASM生成字节码吗?
I want to create dynamic java classes, I use a template to generate the source code, and then use jasper jdt to compile. But now, I want to remove the dependency for jdt and create class bytecode with ASM directly.
The source code is about 200 lines, is there any tool to help generate the byte code with ASM?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你可以试试 ASMifier。这将生成代码来重新创建任何
.class
文件的字节码。您可以更改此设置以基于模板生成字节代码。You could try the ASMifier. This will generate code to re-create the byte code of any
.class
file. You can change this to generate byte code based on a template.