(ZipEntry e)
| 63 | } |
| 64 | |
| 65 | public void putNextEntry(ZipEntry e) throws IOException { |
| 66 | e.offset = bytesWritten; |
| 67 | currentEntry = e; |
| 68 | entries.add(e); |
| 69 | writeLocalHeader(e); |
| 70 | } |
| 71 | |
| 72 | public void closeEntry() throws IOException { |
| 73 | // write remainder of buffer if partially full |