Uses of Class
net.lingala.zip4j.model.ZipParameters
-
Packages that use ZipParameters Package Description net.lingala.zip4j net.lingala.zip4j.headers net.lingala.zip4j.io.outputstream net.lingala.zip4j.model net.lingala.zip4j.tasks net.lingala.zip4j.util -
-
Uses of ZipParameters in net.lingala.zip4j
Methods in net.lingala.zip4j with parameters of type ZipParameters Modifier and Type Method Description voidZipFile. addFile(File fileToAdd, ZipParameters parameters)Adds input source file to the zip file.voidZipFile. addFile(String fileToAdd, ZipParameters zipParameters)Adds input source file to the zip file with provided zip parameters.voidZipFile. addFiles(List<File> filesToAdd, ZipParameters parameters)Adds the list of input files to the zip file.voidZipFile. addFolder(File folderToAdd, ZipParameters zipParameters)Adds the folder in the given file object to the zip file.voidZipFile. addStream(InputStream inputStream, ZipParameters parameters)Creates a new entry in the zip file and adds the content of the input stream to the zip file.voidZipFile. createSplitZipFile(List<File> filesToAdd, ZipParameters parameters, boolean splitArchive, long splitLength)Creates a zip file and adds the list of source file(s) to the zip file.voidZipFile. createSplitZipFileFromFolder(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. -
Uses of ZipParameters in net.lingala.zip4j.headers
Methods in net.lingala.zip4j.headers with parameters of type ZipParameters Modifier and Type Method Description FileHeaderFileHeaderFactory. generateFileHeader(ZipParameters zipParameters, boolean isSplitZip, int currentDiskNumberStart, Charset charset, RawIO rawIO) -
Uses of ZipParameters in net.lingala.zip4j.io.outputstream
Methods in net.lingala.zip4j.io.outputstream with parameters of type ZipParameters Modifier and Type Method Description voidZipOutputStream. putNextEntry(ZipParameters zipParameters) -
Uses of ZipParameters in net.lingala.zip4j.model
Constructors in net.lingala.zip4j.model with parameters of type ZipParameters Constructor Description ZipParameters(ZipParameters zipParameters)Create a clone of given ZipParameters instance -
Uses of ZipParameters in net.lingala.zip4j.tasks
Constructors in net.lingala.zip4j.tasks with parameters of type ZipParameters Constructor Description AddFilesToZipTaskParameters(List<File> filesToAdd, ZipParameters zipParameters, Zip4jConfig zip4jConfig)AddFolderToZipTaskParameters(File folderToAdd, ZipParameters zipParameters, Zip4jConfig zip4jConfig)AddStreamToZipTaskParameters(InputStream inputStream, ZipParameters zipParameters, Zip4jConfig zip4jConfig) -
Uses of ZipParameters in net.lingala.zip4j.util
Methods in net.lingala.zip4j.util with parameters of type ZipParameters Modifier and Type Method Description static intZipVersionUtils. determineVersionMadeBy(ZipParameters zipParameters, RawIO rawIO)static VersionNeededToExtractZipVersionUtils. determineVersionNeededToExtract(ZipParameters zipParameters)static List<File>FileUtils. getFilesInDirectoryRecursive(File path, ZipParameters zipParameters)static StringFileUtils. getRelativeFileName(File fileToAdd, ZipParameters zipParameters)
-