When a programmer gets a Java program development kit, a small program or utility called "jar" is included.
The jar utility lets the programmer create, list, or extract the individual files from a JAR file.
The JAR format is based on the popular zip file format.
To open and explore a jar file follow these instructions:
If you have a jar:
Code: Select all
dex2jar.sh myJar.jar
this command will make a new file myJar_dex2jar
Code: Select all
jd-gui myJar_dex2jar.jar
dex2jar can be found here:
https://github.com/pxb1988/dex2jar
jd-gui can be found here:
http://jd.benow.ca/
https://github.com/java-decompiler/jd-gui