0

我发现在使用 Java.util.zip.GzipOutputStream 时,当我先调用 flush() 然后调用 close() 时。在写入预告片之前,deflator 总是产生两个字节(十六进制的“00”和“03”)。这两个字节是什么意思?为什么 flush() 不会刷新压缩器中的所有字节?我已经将流 syncFlush 设置为 true。(在我的用例中,我需要强制刷新流)

这是我写的测试代码。

        File file = new File("gtest.gz");
        OutputStream out = new FileOutputStream(file);
        GZIPOutputStream gzipOutputStream = new GZIPOutputStream(out, true);
                gzipOutputStream.write("Each gzip file generated by JAVA GzipOutputStream has byte '0003' before Trailer"
                 .getBytes());
        gzipOutputStream.flush();
        gzipOutputStream.close();

我跑hexdump -C gtest.gz得到

00000000  1f 8b 08 00 00 00 00 00  00 00 72 4d 4c ce 50 48  |..........rML.PH|
00000010  af ca 2c 50 48 cb cc 49  55 48 4f cd 4b 2d 4a 2c  |..,PH..IUHO.K-J,|
00000020  49 4d 51 48 aa 54 f0 72  0c 73 54 70 07 ca f9 97  |IMQH.T.r.sTp....|
00000030  96 14 94 96 04 97 14 a5  26 e6 2a 64 24 16 03 25  |........&.*d$..%|
00000040  4b 52 15 d4 0d 0c 0c 8c  d5 15 92 52 d3 f2 8b 52  |KR.........R...R|
00000050  15 42 8a 12 81 06 14 01  00 00 00 ff ff 03 00 96  |.B..............|
00000060  ef 3b 5d 50 00 00 00                              |.;]P...|
00000067

最后 8 个字节是 Gzip 的预告片,无论我更改什么内容,都会生成 '03' '00' 之前的两个字节。

4

0 回答 0