Batch decompiling of Java files with JD-GUI

前端 未结 4 2184
隐瞒了意图╮
隐瞒了意图╮ 2020-12-13 06:46

I\'m looking for a program to batch decompile Java classes. I found JAD, but it didn\'t support some new features of Java, and the benefit of this program is that it can exe

4条回答
  •  萌比男神i
    2020-12-13 06:56

    It looks like you can launch the GUI with a whole bunch of libs at once using the command line and then CTRL+ALT+s/CTRL+w each tab to quickly save/close. It's not automated but tolerable when decompiling a pile of dependencies. (Note that the "^" is just a trick for doing multi-line commands in Windows.)

    "c:\jd-gui-0.3.6.windows\jd-gui.exe" ^
     c:\my-libs\lib-a.jar ^
     c:\my-libs\lib-b.jar ^
     c:\my-libs\lib-c.jar ^
     c:\my-libs\lib-d.jar ^
     c:\my-libs\lib-e.jar
    

提交回复
热议问题