zip4j icon indicating copy to clipboard operation
zip4j copied to clipboard

A Java library for zip files and streams

Results 90 zip4j issues
Sort by recently updated
recently updated
newest added
trafficstars

Hi, We are using zip4j(version 2.10.0) to zip file(containing folders) and unzip file for our application. while unzipping the created zip file, we found that folder and file permissions are...

because i have many files,i split the zip file,like this: ZipParameters zipParameters = new ZipParameters(); zipParameters.setEncryptFiles(true); zipParameters.setCompressionLevel(CompressionLevel.FAST); zipParameters.setIncludeRootFolder(false); zipParameters.setSymbolicLinkAction(ZipParameters.SymbolicLinkAction.INCLUDE_LINK_AND_LINKED_FILE); zipParameters.setEncryptionMethod(EncryptionMethod.ZIP_STANDARD); ZipFile zipFile = new ZipFile(packOutputFile, keyword.toCharArray()); zipFile.setRunInThread(true); zipFile.createSplitZipFile(backFileList, defaultZipParameters, true,...

i create SplitZipFiles with some files, and among them some file has the same file name but from different path: A/B/C/fileName.txt A/F/G/fileName.txt A/B/C/P/fileName.txt E/B/C/fileName.txt .... i want to extract single...

want feedback

VSCode was complaining about raw types. Passing it along if interested. Also, the fix delivered for #435 was flagged as dead code - I read through the issue and it...

I have a use case for storing many tiny files using zip4j to pack and make them easier to backup and move around. Currently there are close to 100M files...

for example, i add some files to zipFile, they are has same file name but from different path. A/B/word.text A/B/C/word.text F/G/word.text when i use this way to extract file: FileHeader...

resolved
question

How to get password of encrypted compressed file using zip4j

resolved
question

compress files and directory to a zip file with c# in Windows, how to change directory separator \ to / in linux when using zip.extractAll? in c#: ` System.IO.Compression.ZipFile.CreateFromDirectory(@"F:\TestFolderWithSubFolder", @"F:\target\Test.zip",...

In the java space there is the JCA to abstract crypto operations. So in the hope that it improves the project I went ahead and replaced the hardcoded crypto I...

May i ask what's the matter of the following error warnings? 07-04 15:53:52.675: E/dalvikvm(1742): Could not find class 'java.nio.file.LinkOption[]', referenced from method net.lingala.zip4j.util.FileUtils.setFileLastModifiedTime 07-04 15:53:52.675: E/dalvikvm(1742): Could not find class...

want feedback
question