I need to unzip a set of files that are a zip archive. This is not a set of zip files, it is one large zip file that has been split into several zip files based on size requirements.
For example, if you have a zip file 2.5MB, and your mail system only supports 1MB files, you can ask Zip to create 3 files no more than 1 MB.
So, he creates a.zip.001, a.zip.002, a.zip.003 ... different libraries call them differently, but essentially they all work the same way.
How do you unzip this in java? This is not like the compression of libs in std supports this.
Thanks.
source share