69707172737475
ZipEntry entry = zip.getEntry(file.getPath()); return zip.getInputStream(entry); } public ArcEntry getEntry(File file) throws IOException { return new ArcEntry(getZipFile().getEntry(file.getPath())); }
8687888990919293949596
return entries.hasMoreElements(); } @Override public ArcEntry next() { last = new ArcEntry(entries.nextElement()); return last; } @Override public void remove() {