如何使用 ObjectWeb ASM 获取方法签名?

发布于 2024-11-10 03:27:28 字数 165 浏览 1 评论 0原文

目的:从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 技术交流群。

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

发布评论

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

评论(1

莫相离 2024-11-17 03:27:28

你可以尝试这样的事情:

ClassReader cr = new ClassReader(is);
cr.accept(new EmptyVisitor() {
  public MethodVisitor visitMethod(int access, String name, String desc, String signature, String[] exceptions) {
    if((Opcodes.ACC_PUBLIC & access)>0) {
      System.err.println("method name: " + name);
      System.err.println("return type: " + Type.getReturnType(desc));
      System.err.println("argument types: " + Arrays.toString(Type.getArgumentTypes(desc)));
    }
    return super.visitMethod(access, name, desc, signature, exceptions);
  }
}, 0);

You can try something like this:

ClassReader cr = new ClassReader(is);
cr.accept(new EmptyVisitor() {
  public MethodVisitor visitMethod(int access, String name, String desc, String signature, String[] exceptions) {
    if((Opcodes.ACC_PUBLIC & access)>0) {
      System.err.println("method name: " + name);
      System.err.println("return type: " + Type.getReturnType(desc));
      System.err.println("argument types: " + Arrays.toString(Type.getArgumentTypes(desc)));
    }
    return super.visitMethod(access, name, desc, signature, exceptions);
  }
}, 0);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文