--Environment --Windows10 64bit version 1903 - Eclipse Version: 2019-12 (4.14)
Jad 1.5.8g for Windows 9x-NT-2000 on Intel platform.zip
from JAD Decompiler Downloadjad.exe
from the zip in $ JAVA_HOME / bin
-OK through PATH without entering $ JAVA_HOMEIt's OK if something like help comes out with jad
$ jad
Jad v1.5.8g. Copyright 2001 Pavel Kouznetsov ([email protected]).
Usage: jad [option(s)] <filename(s)>
Options: -a - generate JVM instructions as comments (annotate)
...abridgement...
# 1.Check the location of the class file
$ find /c/app/pleiades/workspace/ponsuke/ -type f -name PonsukeMain.* /c/app/pleiades/workspace/ponsuke/src/main/java/ponsuke/PonsukeMain.java
/c/app/pleiades/workspace/ponsuke/target/classes/ponsuke/PonsukeMain.class
# 2.Decompile
$ jad -a /c/app/pleiades/workspace/ponsuke/target/classes/ponsuke/PonsukeMain.class
Parsing C:/app/pleiades/workspace/ponsuke/target/classes/ponsuke/PonsukeMain.class... Generating PonsukeMain.jad
# 3.A decompiled jad file will be output to the current location, so view it with an editor etc.
$ ls -la | grep PonsukeMain
-rw-r--r--1 ponsuke 197609 3296 April 2 23:32 PonsukeMain.jad
Recommended Posts