如何使用 ObjectWeb ASM 获取方法签名?
目的:从java字节码文件中获取公共方法签名(返回值、参数、方法名)。
我正在使用 ObjectWeb ASM 框架。
问题:我浏览了ASM的API规范并尝试了几个示例,但我仍然不知道如何获取签名。 MethodNode
类有一个签名字段,但值为 null。
Purpose: Obtain the public method signature(return value,parameter,method name) from java bytecode files.
I am using the ObjectWeb ASM framework.
Problem: I scanned through the API specification of ASM and tried several examples, but I still have no idea about how to get the signature. The MethodNode
class has a signature field, but the value is null.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你可以尝试这样的事情:
You can try something like this: