如何从字节码获取有关方法的信息?
我想发现方法内创建了哪个对象以及变量的名称 与字节码相关?我可以发现吗? 我尝试使用 javassist 未成功。有什么想法吗?
I would like discover which object are created inside the method and the name of the variable
related from bytecode? I can I discover it?
I tried unsuccsefull using javassist. Any idea?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用javap反汇编程序。请查看此处以获取更多信息: http://download .oracle.com/javase/1,5.0/docs/tooldocs/windows/javap.html
Use javap to disassemble the program. Take a look here for more info: http://download.oracle.com/javase/1,5.0/docs/tooldocs/windows/javap.html
ASM 是最好的选择。它速度很快,有简单的 API 和详细的用户指南。但您需要了解 JVM 字节码指令在某种程度上。
ASM is the best choice. It is fast and has simple API and detailed User Guide. But you need to know JVM bytecode instructions to some extent.