Software screenshot
Basic introduction
Java decompilation tool jad.exe (java decompilation tool), jad.exe is a java decompilation tool specially created for programmers. jad.exe can compile class files into jad files, which is very useful for programming friends. help.
jad.exe Introduction
A Java decompilation tool similar to javap, which runs fast. It is said that Front End Plus, mDejava programming language, Decafe Pro, Cavaj Java Decomplier, DJ Java Compiler, NMI's Java Class Viewer and other disassembly tools use jad as the core engine. It just adds a graphical interface based on the jad kernel. Download jad.exe and copy it to the jdk/bin directory, and you can use it like javap. After the official version of the java decompilation tool executes jad -p > tmp.java on the command line, the content of the tmp.java file is the java code actually executed after disassembly.
Instructions for use
c:java>jad example1.class The result is that example1.class is decompiled into example1.jad. The official version of the java decompilation tool changes example1.jad to example1.java to obtain the source file. It's good to have a rough recovery.
Software features
When decompiling a JAR package, you can also view the directory structure directly on the left side, which is very convenient.
it works
it works
it works