Showing posts with label Java. Show all posts
Showing posts with label Java. Show all posts

How to get Java Source code from jar files

In the post we learnt how to get Java Source Code from .apk files, Here in this post we will learn how to get Java Source files from .jar files.

what is .jar file ?

jar is acronym of the Java Archive file. basically it contains all java class files and packages that are required or created to build an application. Jar file may also store images and metadata files that are associated with application. Jar file allows Java runtime to efficiently deploy a set of classes and their associated resources. jar files can be created using the command "jar" that is installed when Java Virtual Machine is installed.