Notes: Java module to create Zipped Folder from list of Files


private static void convertFilesToZip(ArrayList filePaths, String zipFilePath) throws Exception {
        try ( ZipOutputStream out = new ZipOutputStream(new FileOutputStream(zipFilePath));) {
            for (String filePath : filePaths) {
                File fileToZip = new File(filePath);
                ZipEntry e = new ZipEntry(new File(filePath).getName());
                out.putNextEntry(e);
                Files.copy(fileToZip.toPath(), out);
            }
        }
    }

No comments:

Post a Comment

If you have any doubts, please let me know.

Various types of salts effect on health (discussion with gemenie)

Is  rock salt or bitnoon helps in digestion or just a airuvedic nuska This is for informational purposes only. For medical advice or diagnos...