Java in a Nutshell Online Quick Reference for Java 1.1
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(); }