如何从字节码获取有关方法的信息?

发布于 2024-11-08 03:58:41 字数 72 浏览 1 评论 0原文

我想发现方法内创建了哪个对象以及变量的名称 与字节码相关?我可以发现吗? 我尝试使用 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 技术交流群。

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

发布评论

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

评论(2

三五鸿雁 2024-11-15 03:58:41

使用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

她如夕阳 2024-11-15 03:58:41

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.

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