Java ZipFile(File file) Constructor
Syntax
ZipFile(File file) constructor from ZipFile has the following syntax.
public ZipFile(File file) throws ZipException , IOException
Example
In the following code shows how to use ZipFile.ZipFile(File file) constructor.
import java.io.File;
import java.util.Enumeration;
import java.util.zip.ZipEntry;
import java.util.zip.ZipFile;
// ww w . jav a2s . c o m
public class Main {
public static void main(String[] args) throws Exception {
ZipFile zipFile = new ZipFile(new File("testfile.zip"));
Enumeration zipEntries = zipFile.entries();
while (zipEntries.hasMoreElements()) {
System.out.println(((ZipEntry) zipEntries.nextElement()).getName());
}
}
}