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

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 ![image](https://github.com/srikanth-lingala/zip4j/assets/129492520/0ebcdcec-77b1-4375-bf2f-b7e61849b0a9) ![image](https://github.com/srikanth-lingala/zip4j/assets/129492520/4ec2ac88-c99e-471f-bcc5-0877ac163af2) I'm confused as to why the unanticipated NullPointerException was...

want feedback

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

![image](https://github.com/srikanth-lingala/zip4j/assets/64991294/eadafec3-e500-416e-aea8-a597cefdb9fc) the code as above. when the progress reached 300---pull out the usb, the zipper is corrupted. it must wait before normal.

want feedback

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); ```