0

在这个线程的帮助下,我能够编写一个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
------------------------------------

之后,什么也没有发生。任何有关此问题的帮助将不胜感激!

4

1 回答 1

1

您对 GZIP 流的使用可能没有任何问题;相反,这是您使用管道流的方式。这些是用于线程间通信的,当您以自己的方式使用它们时会阻塞。

而是使用 aByteArrayOutptuStream来捕获输出。

于 2015-10-27T13:41:42.797 回答