import javassist.bytecode.Bytecode;
import javassist.bytecode.ConstPool;
public class Coverage {
public static void main(String[] args) {
ConstPool cp = new ConstPool("Hello");
byte[] b = new byte[100];
Bytecode bc = new Bytecode(cp);
b = bc.get();
System.out.println("Bytecode start");
for(int i = 0 ; i < b.length ; i++)
{
System.out.println(b);
}
System.out.println("Bytecode end");
}
}
bc.get()没有返回任何内容。我的目标是获取类的字节代码。
答案 0 :(得分:0)
你的System.out.println(b);
每次打印整个数组都需要System.out.println(b[i]);
,但我认为无论如何都不会有效。尝试...
public static void main(String[] args) {
ClassPool pool = ClassPool.getDefault();
try {
CtClass cc = pool.get("java.lang.String");
byte[] bytes = cc.toBytecode();
System.out.println("Bytecode start");
for (Byte b : bytes) {
System.out.println(b);
}
System.out.println("Bytecode end");
} catch (NotFoundException e) {
e.printStackTrace();
} catch (CannotCompileException e) {
e.printStackTrace();
}
}
答案 1 :(得分:0)
请参阅此BCEL Tutorial以编写代码覆盖率工具。