javap in a programmable way

青春壹個敷衍的年華 提交于 2019-11-27 08:09:42

问题


Can we use javap in our own java code in a programmable way?

for example, the following code:

public class TestClass {
    public static void main(String[] args) {
        System.out.println("hello world");
    }
}

using javap in command line, we got :

// Header + consts 1..22 snipped
const #22 = String      #23;    //  hello world
const #23 = Asciz       hello world;

public static void main(java.lang.String[]);
  Signature: ([Ljava/lang/String;)V
  Code:
   Stack=2, Locals=1, Args_size=1
   0:   getstatic       #16; //Field java/lang/System.out:Ljava/io/PrintStream;
   3:   ldc     #22; //String hello world
   5:   invokevirtual   #24; //Method java/io/PrintStream.println:(Ljava/lang/String;)V
   8:   return
  // Debug info snipped
}

can I print only the Constant Pool using javap's API?


回答1:


Apache BCEL provides encapsulations of .class file parsing, which provides a set of API. Almost for every element in .class file, there's a corresponding Class in BECL API to represent it. So in some way, it is not that straightforward if you just want to print out certain sections of the class file. Here is a simple example you can refer, pay attention to the org.apache.bcel.classfile.ClassParser:

    ClassParser cp = new ClassParser("TestClass.class");
    JavaClass jc = cp.parse();
    ConstantPool constantPool = jc.getConstantPool(); // Get the constant pool here.
    for (Constant c : constantPool.getConstantPool()) {
        System.out.println(c); // Do what you need to do with all the constants.
    }



回答2:


There is no API for javap internals, but you can look for the source code of javap, which is in the package com.sun.tools.javap. The entry class is com.sun.tools.javap.Main. So another way to run javap is java -cp $JAVA_HOME/lib/tools.jar com.sun.tools.javap.Main YourTestClass



来源:https://stackoverflow.com/questions/14434320/javap-in-a-programmable-way

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!