srikanth-lingala / zip4j

A Java library for zip files and streams
Apache License 2.0
2.09k stars 313 forks source link

New feature request: Create a split zip file with ZipOutputStream #521

Open NanyangTaiji opened 1 year ago

srikanth-lingala commented 1 year ago

Split zip file cannot be created by an OutputStream unfortunately. This feature needs random file access, which cannot be done via streams.

NanyangTaiji commented 1 year ago

Is possible to save half-done pieces to a cache folder first and then convert them in to split zip pieces?

NanyangTaiji commented 10 months ago

Just found you already have SplitOutputStream defined, how this is applied?