我们有以下 Java 方法来使用 GZIPOutputStream 压缩文件
private void archive(Path originalFile) {
Path tempFile = originalFile.resolveSibling(originalFile.toFile().getName() + TEMPORARY_FILE_EXTENSION);
Path gzippedFile = originalFile.resolveSibling(originalFile.toFile().getName() + ARCHIVED_FILE_EXTENSION);
try {
try (FileInputStream input = new FileInputStream(originalFile.toFile());
BufferedOutputStream output = new BufferedOutputStream(new GZIPOutputStream(new FileOutputStream(tempFile.toFile())))) {
IOUtils.copy(input,output);
output.flush();
}
Files.move(tempFile, gzippedFile, StandardCopyOption.REPLACE_EXISTING);
Files.delete(originalFile);
LOGGER.info("Archived file {} to {}", originalFile, gzippedFile);
} catch (IOException e) {
LOGGER.error("Could not archive file {}: " + e.getMessage(), originalFile, e);
}
try {
Files.deleteIfExists(tempFile);
} catch (IOException e) {
LOGGER.error("Could not delete temporary file {}: " + e.getMessage(), tempFile, e);
}
}
问题是如果我们手动解压文件:
gzip -d file_name
生成的解压缩文件与原始文件不匹配。 文件大小和总行数减少。例如从 33MB 到 32MB,损失了 800K 行。
问题是否与我们正在压缩的文件 的编码 ( EBCDIC ) 有关?https://en.wikipedia.org/wiki/EBCDIC