https://bz.apache.org/bugzilla/show_bug.cgi?id=69400

--- Comment #1 from PJ Fanning <fannin...@yahoo.com> ---
This looks more complicated than I thought.

    protected ZipArchiveOutputStream createArchiveOutputStream(OutputStream
out) {
        if (Zip64Mode.Always.equals(zip64Mode)) {
            return new OpcZipArchiveOutputStream(out);
        } else {
            ZipArchiveOutputStream zos = new ZipArchiveOutputStream(out);
            zos.setUseZip64(zip64Mode);
            return zos;
        }
    }

We currently have OpcZipArchiveOutputStream. This is quite hard to test and it
is not clear how Excel, Google Spreadsheets, LibreOffice, etc all handle Zip64
modes.

-- 
You are receiving this mail because:
You are the assignee for the bug.
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@poi.apache.org
For additional commands, e-mail: dev-h...@poi.apache.org

Reply via email to