-
Notifications
You must be signed in to change notification settings - Fork 51
How to use garlic decompiler
Neo edited this page Jun 5, 2025
·
1 revision
-
decompile .class file
decompile .class file, default output is stdout
garlic /path/to/jvm.class
-
decompile jar file
garlic /path/to/file.jar garlic /path/to/file.jar -o /path/to/save # -o option is source code output path garlic /path/to/file.jar -t 5 # -t option is thread count, default is 4
default output is same level directory as the file
-
javap
like javap, more faster, disabled LineNumber and StackMapTable attributes
garlic /path/to/jvm.class -p
-
dexdump
garlic /path/to/dalvik.dex -p # unsupport now