tl  tr
  Home | Tutorials | Articles | Videos | Products | Tools | Search
Interviews | Open Source | Tag Cloud | Follow Us | Bookmark | Contact   
 Articles > Misc > How to create Zip stream/file content in-memory

How to create Zip stream/file content in-memory

Author: Venkata Sudhakar

The below example shows how to create a Zip stream/file content in-memory.

01package com.bethecoder.utils;
02 
03import java.io.ByteArrayOutputStream;
04import java.io.File;
05import java.util.zip.ZipEntry;
06import java.util.zip.ZipOutputStream;
07 
08import org.apache.commons.io.FileUtils;
09 
10public class ZipDirectory {
11 
12    public static void main(String[] args) {
13        byte [] zipContent = createZipByteArray(new File("C:\\DIR_TO_ZIP"));
14    }
15 
16    public static byte[] createZipByteArray(File directoryToZip) {
17        byte[] zipContent = new byte[0];
18        try {
19            ByteArrayOutputStream output = new ByteArrayOutputStream();
20            ZipOutputStream zipOut = new ZipOutputStream(output);
21            for (File fileToZip : directoryToZip.listFiles()) {
22                if (fileToZip.isFile()) {
23                    ZipEntry zipEntry = new ZipEntry(fileToZip.getName());
24                    zipOut.putNextEntry(zipEntry);
25                    zipOut.write(FileUtils.readFileToByteArray(fileToZip));
26                }
27            }
28            zipOut.close();
29            zipContent = output.toByteArray();
30        } catch (Exception e) {
31            e.printStackTrace();
32        }
33        return zipContent;
34    }
35}

 
  


  
bl  br