zip4j
zip4j copied to clipboard
A Java library for zip files and streams
I have a `byte[]` which is zip content. I want to identify if it's encrypted, and if so apply a password and extract all the contents. At the moment I'd...
When following provided example "Extract files with ZipInputStream ", the getNextEntry from the ZipInputStream only returns first entry in zip file and then returns null. I find no way to...
I guess both should be set to false on `reset()`
I was analyzing the code of an app and I was reading your lib, but could you rename this var to something more obvious ? https://github.com/srikanth-lingala/zip4j/blob/c4c993cb143db99832eadd03699bd8228a9793b8/src/main/java/net/lingala/zip4j/crypto/engine/ZipCryptoEngine.java#LL62C9-L62C13 Thanks you !
Hi, if we have a root folder with more subdirs, but want zip just two oh these, how it can be achieved? And if subdirs are not in the same...
Apologies for the lack of a canned minimal test case. It's also possible this has been fixed in more recent versions, but the control flow is complex enough that I...
A zip file has a data descriptor, and when a new file is added, there will be additional data at the end of the zip file.  `struct ZIPDIRENTRY dirEntry[341]`...
I'm trying to figure out what would be needed to adapt Zip4J to generate TorrentZip which is same as ZIP but with more restrictive rules explained here : https://www.romvault.com/trrntzip_explained.pdf But...