ZipReader.java Source code

Java tutorial

Introduction

Here is the source code for ZipReader.java

Source

import java.io.FileInputStream;
import java.util.Date;
import java.util.zip.ZipEntry;
import java.util.zip.ZipInputStream;

public class ZipReader {
    public static void main(String[] args) throws Exception {
        ZipInputStream zis = null;

        FileInputStream fis = new FileInputStream(args[0]);
        zis = new ZipInputStream(fis);

        ZipEntry ze;

        while ((ze = zis.getNextEntry()) != null)
            System.out.println(
                    ze.getName() + "  [" + ze.getSize() + "]  [" + new Date(ze.getTime()).toString() + "]");
    }
}