Is there any way i can read the contents of a jar file. like i want to read the manifest file in order to find the creator of the jar file and version. Is there any way to a
Next code should help:
JarInputStream jarStream = new JarInputStream(stream); Manifest mf = jarStream.getManifest();
Exception handling is left for you :)