Skip to content

Instantly share code, notes, and snippets.

@ErDmKo
Last active December 17, 2015 22:49
Show Gist options
  • Save ErDmKo/5685049 to your computer and use it in GitHub Desktop.
Save ErDmKo/5685049 to your computer and use it in GitHub Desktop.
Decompile all *.class files into *.java recursively by JAva Decompiler(JAD). For windows.
@Echo Off
For /R %%F In (*.class) Do (
jad %%F
ren %CD%\%%~nF.jad %%~nF.java
move %CD%\%%~nF.java %%~dpF
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment