List of utility methods to do ZipOutputStream Write
void | ZipFiles(ZipOutputStream out, String path, File... srcFiles) Zip Files path = path.replaceAll("\\*", "/"); if (!path.endsWith("/")) { path += "/"; byte[] buf = new byte[1024]; try { for (int i = 0; i < srcFiles.length; i++) { if (srcFiles[i].isDirectory()) { ... |