Home Ubuntu下运行jd Gui
Post
Cancel

Ubuntu下运行jd Gui

jd-gui ( https://github.com/java-decompiler/jd-gui) 是反编译java代码最好的工具(据说)

但是在我的UBUNTU14.04 上跑不起来, 原因是 默认下载的文件是 32位的。而UBUNTU14是64位的。

试了所有google的方法都不行,

于是 下载源代码, 编译, 运行。 OK 了。

this worked for me:

$ git clone [email protected]:java-decompiler/jd-gui.git
$ gradle build
then a file will be generated to : build/libs/jd-gui-1.0.0.jar

run it:

$ java -jar build/libs/jd-gui-1.0.0.jar
This post is licensed under CC BY 4.0 by the author.