Java bytecode equivalents for ilasm / ildasm

后端 未结 2 1170
Happy的楠姐
Happy的楠姐 2021-02-10 03:20

For CIL / MSIL, I can write the code in a text editor and compile / decompile with ilasm / ildasm.

I can use Reflector to see the CIL generated by a .NET class.

2条回答
  •  眼角桃花
    2021-02-10 03:41

    Bytecode Outline plugin for Eclipse

    to play with bytecode you can use ASM or BCEL

    Take a look at org.apache.bcel.util.BCELifier, it takes a given class and converts it to a BCEL program (in Java, of course). It will show you how certain code is generated using BCEL.

提交回复
热议问题