For CIL / MSIL, I can write code in a text editor and compile / decompile with ilasm / ildasm.
I can use Reflector to view the CIL generated by the .NET class.
In the Java world, javap -c shows disassembled bytecode.
How to compile Java bytecode? (i.e. Java equivalent ilasm / ildasm).
Is there an IDE that supports Java bytecode?
Does the IDE support debugging, i.e. single step / break points, etc.?
source
share