java.util.zip.ZipException: too many entries in ZIP file -


I'm trying to write a Java class to remove a large ZIP file that contains ~ 74000 XML files. When trying to open it using the Java Zip library, I get the following exception:

java.util.zip.ZipException : Many entries in the zip file

Unfortunately, due to the requirements of this project, the zip can not be broken before going to me, and the unzipping process should be automated (no manual steps). What's the way to get this limit with Java.util.zip or some third-party Java ZIP library?

Thank you.

Comments