Java in a Nutshell Online Quick Reference for Java 1.1

CLASS java.util.zip.ZipFile

Availability: JDK 1.1

public class ZipFile extends Object {
   // Public Constructors
      public ZipFile(String name) throws IOException;
      public ZipFile(File file) throws ZipException, IOException;
   // Public Instance Methods
      public void close() throws IOException;
      public Enumeration entries();
      public ZipEntry getEntry(String name);
      public InputStream getInputStream(ZipEntry ze) throws IOException;
      public String getName();
}

Java in a Nutshell Online Quick Reference for Java 1.1
Created by David Flanagan. Copyright © 1997 by O'Reilly & Associates.