Java bytecode equivalents for ilasm / ildasm

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.?

+5
source share
2 answers

Byte Encoding Plugin for Eclipse

for playback with bytecode you can use ASM or BCEL

org.apache.bcel.util.BCELifier, BCEL (, Java). , BCEL.

+5

Jasmin:

http://jasmin.sourceforge.net/

- Java. , - Java , Jasmin , JVM . , Jasmin, Jasmin Java.

+4

All Articles