List of utility methods to do Unzip File
void | unzip(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"); ... |