Java Utililty Methods Unzip File

List of utility methods to do Unzip File

Description

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

Method

voidunzip(final String zipFile, final String outputFolder, final boolean createFolder)
Unzip the given ZIP file in the output folder, without the root folder part
log("UnZip file '" + zipFile + "'");
log("        in '" + outputFolder + "'");
File folder = new File(outputFolder);
if (!folder.exists()) {
    if (createFolder) {
        folder.mkdirs(); 
    } else {
        throw new Exception("UnZip error : folder '" + outputFolder + "' doesn't exist");
...