Jeremy Stein - Brain
« Sharepoint field type Integer | C# Submit XML » |
Recursive decompile
On Windows, to decompile all the class files in a directory tree with jad, use the following command:
for /r . %f in (*.class) do c:\path-to-jad\jad -d %~dpf -o “%f”
You could add the parameter -s .java if you’re feeling confident.
Double the %s if you’re putting this in a batch file.
Update: Oops. You could also just use the -r option with “**/*.class”.
One Comment
- Aaron replied:
Thanks, this is just what I was looking for.
May 27th, 2009 at 10:03 am. Permalink.
« Sharepoint field type Integer | C# Submit XML » |
Leave a Reply