List of utility methods to do Unzip ZipFile
void | unZip(ZipFile zipFile, File outputDir) Unzips the zipfile in the output directory. Enumeration<? extends ZipEntry> e = zipFile.entries(); while (e.hasMoreElements()) { ZipEntry entry = e.nextElement(); File entryFile = new File(outputDir, entry.getName()); if (entry.isDirectory()) { entryFile.mkdirs(); } else { File parent = entryFile.getParentFile(); ... |