List of utility methods to do Jar Zip Folder
void | addFolderToJar(File baseDir, File srcdir, JarOutputStream zOut) add Folder To Jar if ((!srcdir.exists()) || (!srcdir.isDirectory())) { throw new IOException("source directory " + srcdir + " does not exist or is not a folder"); for (File f : srcdir.listFiles()) { if (f.exists() && (!f.isHidden())) { if (f.isDirectory()) { addFolderToJar(baseDir, f, zOut); } else { ... |