()
| 203 | } |
| 204 | |
| 205 | @Override |
| 206 | public void close() throws IOException { |
| 207 | int centralDirOffset = bytesWritten; |
| 208 | for (ZipEntry e : entries) |
| 209 | writeCentralDirectoryHeader(e); |
| 210 | writeEndofCentralDirectory(centralDirOffset); |
| 211 | deflater.dispose(); |
| 212 | out.close(); |
| 213 | } |
| 214 | |
| 215 | @Override |
| 216 | public void flush() throws IOException { |