finally {
IOUtils.closeQuietly(zos);
}
// Transform the ZIP file
ZipUtil.transformEntry(file1, name, new StreamZipEntryTransformer() {
protected void transform(ZipEntry zipEntry, InputStream in, OutputStream out) throws IOException {
int b;
while ((b = in.read()) != -1)
out.write(b + 1);
}