Is there a disassembler + debugger for java (ala OllyDbg / SoftICE for assembler)?

后端 未结 2 529
Happy的楠姐
Happy的楠姐 2020-12-08 08:15

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

2条回答
  •  [愿得一人]
    2020-12-08 09:04

    Take a look at JAD Decomplier for decompiling Java code. You can then run an IDE's built-in debugger using produced sources. IDE can be IntelliJ, Eclipse or NetBeans. This approach is not completely automatic, but it should do the job.

提交回复
热议问题