void |
ZipFile.addFile(File sourceFile,
ZipParameters parameters) |
Adds input source file to the zip file.
|
void |
ZipFile.addFiles(ArrayList sourceFileList,
ZipParameters parameters) |
Adds the list of input files to the zip file.
|
void |
ZipFile.addFolder(File path,
ZipParameters parameters) |
Adds the folder in the given file object to the zip file.
|
void |
ZipFile.addFolder(String path,
ZipParameters parameters) |
Adds the folder in the given path to the zip file.
|
void |
ZipFile.addStream(InputStream inputStream,
ZipParameters parameters) |
Creates a new entry in the zip file and adds the content of the inputstream to the
zip file.
|
void |
ZipFile.createZipFile(File sourceFile,
ZipParameters parameters) |
Creates a zip file and adds the source file to the zip file.
|
void |
ZipFile.createZipFile(File sourceFile,
ZipParameters parameters,
boolean splitArchive,
long splitLength) |
Creates a zip file and adds the source file to the zip file.
|
void |
ZipFile.createZipFile(ArrayList sourceFileList,
ZipParameters parameters) |
Creates a zip file and adds the list of source file(s) to the zip file.
|
void |
ZipFile.createZipFile(ArrayList sourceFileList,
ZipParameters parameters,
boolean splitArchive,
long splitLength) |
Creates a zip file and adds the list of source file(s) to the zip file.
|
void |
ZipFile.createZipFileFromFolder(File folderToAdd,
ZipParameters parameters,
boolean splitArchive,
long splitLength) |
Creates a zip file and adds the files/folders from the specified folder to the zip file.
|
void |
ZipFile.createZipFileFromFolder(String folderToAdd,
ZipParameters parameters,
boolean splitArchive,
long splitLength) |
Creates a zip file and adds the files/folders from the specified folder to the zip file.
|