Methods Summary |
---|
public static java.util.zip.ZipFile | getZipFile(java.lang.String path)Return a zip file which must already be open
return (ZipFile) zipFileMap.get(path);
|
public static java.util.zip.ZipFile | openZipFile(java.io.File f)Return a zip file which may already be open
ZipFile zf = (ZipFile) zipFileMap.get(f.getPath());
if (zf == null) {
zf = new ZipFile(f);
zipFileMap.put(zf.getName(), zf);
}
return zf;
|
public static java.util.Enumeration | zipFiles()Returns an enumeration of the zip files in the registry
Each element is a ZipFile.
return zipFileMap.elements();
|