Java Utililty Methods Unzip ZipFile

List of utility methods to do Unzip ZipFile

Description

The list of methods to do Unzip ZipFile are organized into topic(s).

Method

voidunZip(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();
...