Skip to content

Latest commit

 

History

3 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 

Repository files navigation

Jar Explorer Documentation

This repository provides documentation on how to inspect, extract, and decompile Java JAR files.


Table of Contents


Extracting a JAR File

You can extract the contents of a JAR file using the unzip command:

unzip myfile.jar -d output_folder
  • myfile.jar – the JAR file you want to extract
  • output_folder – the directory where files will be extracted

After extraction, you will see the folder structure of the JAR, including any .class files, resources, and the META-INF directory.


Decompiling a JAR File

To view the Java source code from compiled .class files, you can use JD-GUI:

  1. Download and install JD-GUI.
  2. Open your JAR file:
jdgui classes.jar
  1. Browse the packages and classes, and optionally export the source code.

Tools

  • unzip – standard utility to extract JAR/ZIP files
  • JD-GUI – Java decompiler GUI for .class files

References

About

No description, website, or topics provided.

Resources

Stars

0 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors