Is there a disassembler + debugger for java (ala OllyDbg / SoftICE for assembler)?
- by Ran Biron
Is there a utility similar to OllyDbg / SoftICE for java? I.e. execute class (from jar / with class path) and, without source code, show the disassembly of the intermediate code with ability to step through / step over / search for references / edit specific intermediate code in memory / apply edit to file...
If not, is it even possible to write…