zip4j
zip4j copied to clipboard
A Java library for zip files and streams
suppose I have 2 entries : - `abcd.tmp` - `abcd.tmp0` If I rename `abcd.tmp` to `bcde.tmp`, then `abcd.tmp0` is also renamed to `bcde.tmp0` !!! This is probably related to this...
Creating a zip file for programming class. Not sure if this is what is required of me but we are going to try
I'm using zip4j version 1.3.2 and I ran into an error that,the error log is shown in the screenshot   I'm confused as to why the unanticipated NullPointerException was...
Took me a while to find this in https://github.com/srikanth-lingala/zip4j/issues/410 and figure out the / at the end of the foldername
 the code as above. when the progress reached 300---pull out the usb, the zipper is corrupted. it must wait before normal.
The error appears at several compression levels (there are levels without an error) test example (in this case level 1,5,7 - broken) test example and [files] attached [20020_20240611_20240614140007.zip](https://github.com/user-attachments/files/15871000/20020_20240611_20240614140007.zip) [zip test.java.txt](https://github.com/user-attachments/files/15871052/zip.test.java.txt)
حذف پسورد
## in calss net.lingala.zip4j.ZipFile ### this function ``` private Zip4jConfig buildConfig() { return new Zip4jConfig(charset, bufferSize, useUtf8CharsetForPasswords); } ``` change to ``` private Zip4jConfig buildConfig() { return new Zip4jConfig(charset ==...
## Version Zip4j 2.11.5 Windows 10 (but might apply to Linux as well) ## Description When extracting a ZIP which contains an entry named `.`, Zip4j deletes the output directory...
```java Map fixFileHeaders = new HashMap(); fixFileHeaders.put(fileHeader.getFileName(), newName); zipFile.extractAll(filePath, fixFileHeaders); ```