Wednesday 23 November 2016

Java Tutorial : Java IO (Java File - How to compress files in ZIP format - Single file)


Click here to watch in Youtube :
https://www.youtube.com/watch?v=P3GcnDeYtX8&list=UUhwKlOVR041tngjerWxVccw

Click the below Image to Enlarge
Java Tutorial : Java IO (Java File - How to compress files in ZIP format - Single file)
Java Tutorial : Java IO (Java File - How to compress files in ZIP format - Single file) 
Java Tutorial : Java IO (Java File - How to compress files in ZIP format - Single file) 
ZipDemo.java
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.util.zip.ZipEntry;
import java.util.zip.ZipOutputStream;

public class ZipDemo
{
    public static void main(String[] args) throws IOException
    {
        ZipDemo zipDemo = new ZipDemo();
        File file = new File("D:/work/HelloWorld.java");
        zipDemo.zipFile("D:/work/java.zip", file);
    }

    private void zipFile(String outputZipFileName, File file)
            throws IOException
    {
        byte[] buffer = new byte[1024];

        /*
         * All Streams will be closed automatically because they
         * are within the "try-With-Resources" block.
         */
        try (FileOutputStream fos = new FileOutputStream(outputZipFileName);
                ZipOutputStream zos = new ZipOutputStream(fos);
                FileInputStream fin = new FileInputStream(file))
        {

            ZipEntry ze = new ZipEntry(file.getName());
            zos.putNextEntry(ze);

            int len;
            while ((len = fin.read(buffer)) > 0)
            {
                zos.write(buffer, 0, len);
            }

            /*
             * Closes the current ZIP entry and positions
             * the stream for writing the next entry.
             */
            zos.closeEntry();
        }

        System.out.println("Zip file is created...");
    }
    
}
Output
Zip file is created...

Refer: 
https://docs.oracle.com/javase/8/docs/api/index.html?java/util/zip/ZipOutputStream.html 
https://docs.oracle.com/javase/8/docs/api/java/util/zip/ZipEntry.html

Click the below link to download the code:
https://sites.google.com/site/ramj2eev1/home/javabasics/JavaIODemo_zip_single_file_App.zip?attredirects=0&d=1

Github Link:
https://github.com/ramram43210/Java/tree/master/BasicJava/JavaIODemo_zip_single_file_App

Bitbucket Link:
https://bitbucket.org/ramram43210/java/src/a3d05269db9922e504bb1f9de8d07031990c9910/BasicJava/JavaIODemo_zip_single_file_App/?at=master

See also:

  • All JavaEE Viedos Playlist
  • All JavaEE Viedos
  • All JAVA EE Links
  • Servlets Tutorial
  • All Design Patterns Links
  • JDBC Tutorial
  • Java Collection Framework Tutorial
  • JAVA Tutorial
  • Kids Tutorial
  • No comments:

    Post a Comment