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(java.io.File fileToAdd, ZipParameters parameters)Adds input source file to the zip file.voidZipFile. addFile(java.lang.String fileToAdd, ZipParameters zipParameters)Adds input source file to the zip file with provided zip parameters.voidZipFile. addFiles(java.util.List<java.io.File> filesToAdd, ZipParameters parameters)Adds the list of input files to the zip file.voidZipFile. addFolder(java.io.File folderToAdd, ZipParameters zipParameters)Adds the folder in the given file object to the zip file.private voidZipFile. addFolder(java.io.File folderToAdd, ZipParameters zipParameters, boolean checkSplitArchive)Internal method to add a folder to the zip file.voidZipFile. addStream(java.io.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(java.util.List<java.io.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(java.io.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 private byte[]FileHeaderFactory. determineGeneralPurposeBitFlag(boolean isEncrypted, ZipParameters zipParameters, java.nio.charset.Charset charset)private AESExtraDataRecordFileHeaderFactory. generateAESExtraDataRecord(ZipParameters parameters)FileHeaderFileHeaderFactory. generateFileHeader(ZipParameters zipParameters, boolean isSplitZip, int currentDiskNumberStart, java.nio.charset.Charset charset, RawIO rawIO)private byteFileHeaderFactory. generateFirstGeneralPurposeByte(boolean isEncrypted, ZipParameters zipParameters) -
Uses of ZipParameters in net.lingala.zip4j.io.outputstream
Methods in net.lingala.zip4j.io.outputstream that return ZipParameters Modifier and Type Method Description private ZipParametersZipOutputStream. cloneAndPrepareZipParameters(ZipParameters zipParameters)Methods in net.lingala.zip4j.io.outputstream with parameters of type ZipParameters Modifier and Type Method Description private ZipParametersZipOutputStream. cloneAndPrepareZipParameters(ZipParameters zipParameters)private longZipStandardCipherOutputStream. getEncryptionKey(ZipParameters zipParameters)private voidZipOutputStream. initializeAndWriteFileHeader(ZipParameters zipParameters)private CipherOutputStream<?>ZipOutputStream. initializeCipherOutputStream(ZipEntryOutputStream zipEntryOutputStream, ZipParameters zipParameters)private CompressedOutputStreamZipOutputStream. initializeCompressedOutputStream(CipherOutputStream<?> cipherOutputStream, ZipParameters zipParameters)private CompressedOutputStreamZipOutputStream. initializeCompressedOutputStream(ZipParameters zipParameters)protected AESEncrypterAesCipherOutputStream. initializeEncrypter(java.io.OutputStream outputStream, ZipParameters zipParameters, char[] password, boolean useUtf8ForPassword)protected abstract TCipherOutputStream. initializeEncrypter(java.io.OutputStream outputStream, ZipParameters zipParameters, char[] password, boolean useUtf8ForPassword)protected NoCipherOutputStream.NoEncrypterNoCipherOutputStream. initializeEncrypter(java.io.OutputStream outputStream, ZipParameters zipParameters, char[] password, boolean useUtf8ForPassword)protected StandardEncrypterZipStandardCipherOutputStream. initializeEncrypter(java.io.OutputStream outputStream, ZipParameters zipParameters, char[] password, boolean useUtf8ForPassword)voidZipOutputStream. putNextEntry(ZipParameters zipParameters)private voidZipOutputStream. verifyZipParameters(ZipParameters zipParameters)Constructors in net.lingala.zip4j.io.outputstream with parameters of type ZipParameters Constructor Description AesCipherOutputStream(ZipEntryOutputStream outputStream, ZipParameters zipParameters, char[] password, boolean useUtf8ForPassword)CipherOutputStream(ZipEntryOutputStream zipEntryOutputStream, ZipParameters zipParameters, char[] password, boolean useUtf8ForPassword)NoCipherOutputStream(ZipEntryOutputStream zipEntryOutputStream, ZipParameters zipParameters, char[] password)ZipStandardCipherOutputStream(ZipEntryOutputStream outputStream, ZipParameters zipParameters, char[] password, boolean useUtf8ForPassword) -
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
Fields in net.lingala.zip4j.tasks declared as ZipParameters Modifier and Type Field Description private ZipParametersAddFilesToZipTask.AddFilesToZipTaskParameters. zipParametersprivate ZipParametersAddFolderToZipTask.AddFolderToZipTaskParameters. zipParametersprivate ZipParametersAddStreamToZipTask.AddStreamToZipTaskParameters. zipParametersMethods in net.lingala.zip4j.tasks that return ZipParameters Modifier and Type Method Description private ZipParametersAbstractAddFileToZipTask. cloneAndAdjustZipParameters(ZipParameters zipParameters, java.io.File fileToAdd, ProgressMonitor progressMonitor)Methods in net.lingala.zip4j.tasks with parameters of type ZipParameters Modifier and Type Method Description (package private) voidAbstractAddFileToZipTask. addFilesToZip(java.util.List<java.io.File> filesToAdd, ProgressMonitor progressMonitor, ZipParameters zipParameters, Zip4jConfig zip4jConfig)private voidAbstractAddFileToZipTask. addFileToZip(java.io.File fileToAdd, ZipOutputStream zipOutputStream, ZipParameters zipParameters, SplitOutputStream splitOutputStream, ProgressMonitor progressMonitor, byte[] readBuff)private booleanAbstractAddFileToZipTask. addSymlink(ZipParameters zipParameters)private voidAbstractAddFileToZipTask. addSymlinkToZip(java.io.File fileToAdd, ZipOutputStream zipOutputStream, ZipParameters zipParameters, SplitOutputStream splitOutputStream)(package private) longAbstractAddFileToZipTask. calculateWorkForFiles(java.util.List<java.io.File> filesToAdd, ZipParameters zipParameters)private ZipParametersAbstractAddFileToZipTask. cloneAndAdjustZipParameters(ZipParameters zipParameters, java.io.File fileToAdd, ProgressMonitor progressMonitor)private java.util.List<java.io.File>AbstractAddFileToZipTask. removeFilesIfExists(java.util.List<java.io.File> files, ZipParameters zipParameters, ProgressMonitor progressMonitor, Zip4jConfig zip4jConfig)(package private) voidAbstractAddFileToZipTask. verifyZipParameters(ZipParameters parameters)Constructors in net.lingala.zip4j.tasks with parameters of type ZipParameters Constructor Description AddFilesToZipTaskParameters(java.util.List<java.io.File> filesToAdd, ZipParameters zipParameters, Zip4jConfig zip4jConfig)AddFolderToZipTaskParameters(java.io.File folderToAdd, ZipParameters zipParameters, Zip4jConfig zip4jConfig)AddStreamToZipTaskParameters(java.io.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 java.util.List<java.io.File>FileUtils. getFilesInDirectoryRecursive(java.io.File path, ZipParameters zipParameters)static java.lang.StringFileUtils. getRelativeFileName(java.io.File fileToAdd, ZipParameters zipParameters)
-