Explore a jar or dex file
Posted: Mon May 18, 2015 2:02 pm
A JAR (Java ARchive) file is a file that contains the class, image, and sound files for a Java application or applet gathered into a single file and possibly compressed.
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:
this command will make a new file myJar_dex2jar
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
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