12

我已经尝试搜索,但找不到任何东西。我正在尝试做的是循环遍历一个列表,在该列表中我从多个列表中的项目组合构造一个字符串。然后我想将这些字符串转储到一个 gzip 文件中。我只是将它转储到一个普通的 ascii 文本文件中,但我似乎无法让它与 gzipoutputstream 一起工作。所以基本上,

循环创建字符串转储字符串到压缩文件 endloop

如果可能的话,我想避免转储到纯文本文件然后压缩它,因为这些文件每个几乎 100 兆。

4

2 回答 2

23

是的,你可以做到这一点没问题。您只需要使用编写器将基于字符的字符串转换为基于字节的 gzip 流。

    BufferedWriter writer = null;
    try {
        GZIPOutputStream zip = new GZIPOutputStream(
            new FileOutputStream(new File("tmp.zip")));

        writer = new BufferedWriter(
            new OutputStreamWriter(zip, "UTF-8"));

        String[] data = new String[] { "this", "is", "some", 
            "data", "in", "a", "list" };

        for (String line : data) {
            writer.append(line);
            writer.newLine();
        }
    } finally {         
        if (writer != null)
            writer.close();
    }

另外,请记住 gzip 只是压缩一个流,如果你想要嵌入文件,请参阅这篇文章:gzip archive with multiple files inside

于 2012-06-04T21:15:56.933 回答
0
try {
        String srcString = "the string you want to zip.";

        ByteArrayOutputStream stream = new ByteArrayOutputStream();
        GZIPOutputStream gzip = new GZIPOutputStream(stream);
        gzip.write(srcString.getBytes(StandardCharsets.UTF_8));
        gzip.close();

        // the gzip bytes you get
        byte[] zipBytes = stream.toByteArray();

    } catch (IOException ex) {
        // ...
    }
于 2020-12-08T12:04:16.613 回答