我试过搜索但找不到任何东西。我正在尝试做的是我循环遍历一个列表,我正在从多个列表中的项目组合构造一个字符串。然后我想将这些字符串转储到gzip压缩文件。我得到它只是将它转储到一个简单的ascii文本文件,但我似乎无法让它与gzipoutputstream一起工作。所以基本上,
循环 创建字符串 将字符串转储到gzipped文件 ENDLOOP
如果可能的话,我想避免转储到纯文本文件然后解压缩,因为这些文件几乎都是100兆。
答案 0 :(得分:21)
是的,你可以做到这一点没问题。您只需要使用编写器将基于字符的字符串转换为基于字节的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
答案 1 :(得分: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) {
// ...
}