在这个线程的帮助下,我能够编写一个decompress()
和一个compress()
函数。我的程序以 gzip 格式接收数据,对其进行膨胀,有时对其进行修改,然后再次重新压缩并发送。经过数小时的头痛和错误跟踪,我发现有时(!),GZIPOutputStream
我使用的只是无法正确关闭。我可以冲洗它,但在那之后,什么也没有发生。但是,在其他时候,它只是有效>。>
这是我的compress()
方法的代码。
public static byte[] compress(String data) throws IOException {
try (PipedInputStream pipedIn = new PipedInputStream();
GZIPOutputStream compressor= new GZIPOutputStream(new PipedOutputStream(pipedIn))) {
compressor.write(data.getBytes("UTF-8"));
compressor.flush();
compressor.close();
// Sometimes does not reach this point.
return IOUtils.toByteArray(pipedIn);
}
}
出于调试目的,我添加了一些 System.Outs。控制台输出如下:
------------------------------------
Decompressing ...
compressed byte count: 628
uncompressed byte count: 1072
------------------------------------
Compressing ...
uncompressed byte count: 1072
compressed byte count: 628
------------------------------------
>>> That worked!
------------------------------------
Decompressing ...
compressed byte count: 526
uncompressed byte count: 2629
------------------------------------
uncompressed byte count: 2629
compressed byte count: 526
------------------------------------
>>> That worked!
------------------------------------
Decompressing ...
compressed byte count: 1888
uncompressed byte count: 6254
------------------------------------
之后,什么也没有发生。任何有关此问题的帮助将不胜感激!