We are getting the below error when trying to unzip a zip64 file:
invalid CEN header (bad signature)
java.util.zip.ZipException:
at java.util.zip.ZipFile.open(Native Method)
at java.util.zip.ZipFile.<init>(ZipFile.java:225)
at java.util.zip.ZipFile.<init>(ZipFile.java:155)
at java.util.zip.ZipFile.<init>(ZipFile.java:126)
Steps to reproduce the issue
ZipFile zipFile = new ZipFile("{file_path}");
Enumeration<? extends ZipEntry> entries = zipFile.entries();
I have attached the input file.
zipfile.zip
Is zip64 decompression not supported?