Class java.util.zip.ZipFile (1.1)


public class ZipFile extends Object implements ZipConstants {
  // Public Constructors
    public ZipFile(String name) throws ZipException, 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 e) throws ZipException, IOException;
    public String getName( );
}