we are working on a program where we need to flush (force compress and send data) a GZIPOutputStream. The problem is, that the flush method of the GZIPOutputStream doesn't work as expected (force compress and send data), instead the Stream waits for more data for efficient data compression.
When you call finish the data is compressed and sent over the output stream but the GZIPOutputStream (not the underlying stream) will be closed so we cant write more data till we create a new GZIPOutputStream, which costs time and performance.
Hope anyone can help with this.
Best regards.
There is same problem on
Android
also. Accepter answer doesn't work becausedef.setLevel(Deflater.NO_COMPRESSION);
throws exception. Accordingflush
method it changes compress level ofDeflater
. So I suppose changing compression should be called before writing data, but I'm not sure.There're 2 other options: