Retrieving the Manifest of a JAR File try { JarFile jarfile = new JarFile(filename); // Get manifest and write its contents jarfile.getManifest().write(System.out); } catch (IOException e) { }