}
}
ZipEntry zipEntryMF = new ZipEntry("META-INF/MANIFEST.MF");
manifestStream = new StringBufferInputStream(manifest.toString().replace('\\','/'));
zipEntryMF.setSize(manifestStream.available());
zipEntryMF.setCrc(new CRC32().getValue());
addEntry(zipEntryMF, manifestStream, zipFile);
Enumeration filesForZipEnum=filesForZip.elements();
while (filesForZipEnum.hasMoreElements()) {