Java ZipFile(File file, int mode) Constructor

Syntax

ZipFile(File file, int mode) constructor from ZipFile has the following syntax.

public ZipFile(File file,  int mode)  throws IOException

Example

In the following code shows how to use ZipFile.ZipFile(File file, int mode) constructor.


//from ww w.  j a  va2 s.  com
import java.io.File;
import java.util.Enumeration;
import java.util.zip.ZipEntry;
import java.util.zip.ZipFile;

public class Main {

  public static void main(String[] args) throws Exception {
    ZipFile zipFile = new ZipFile(new File("testfile.zip"),ZipFile.OPEN_READ);

    Enumeration zipEntries = zipFile.entries();

    while (zipEntries.hasMoreElements()) {
      System.out.println(((ZipEntry) zipEntries.nextElement()).getName());
    }
  }
}




















Home »
  Java Tutorial »
    java.util.zip »




ZipEntry
ZipFile