压缩目录到tar.gz与共享资源压缩
2022-09-03 04:06:30
我遇到了一个问题,使用共享资源压缩库来创建目录的tar.gz。我有一个目录结构,如下所示。
parent/
child/
file1.raw
fileN.raw
我使用以下代码进行压缩。它运行良好,没有例外。但是,当我尝试解压缩tar.gz时,我得到一个名为“childDirToCompress”的文件。它的大小是正确的,因此文件在涂鸦过程中已清楚地相互追加。所需的输出将是一个目录。我不知道我做错了什么。任何明智的公地压缩器都能让我走上正确的道路吗?
CreateTarGZ() throws CompressorException, FileNotFoundException, ArchiveException, IOException {
File f = new File("parent");
File f2 = new File("parent/childDirToCompress");
File outFile = new File(f2.getAbsolutePath() + ".tar.gz");
if(!outFile.exists()){
outFile.createNewFile();
}
FileOutputStream fos = new FileOutputStream(outFile);
TarArchiveOutputStream taos = new TarArchiveOutputStream(new GZIPOutputStream(new BufferedOutputStream(fos)));
taos.setBigNumberMode(TarArchiveOutputStream.BIGNUMBER_STAR);
taos.setLongFileMode(TarArchiveOutputStream.LONGFILE_GNU);
addFilesToCompression(taos, f2, ".");
taos.close();
}
private static void addFilesToCompression(TarArchiveOutputStream taos, File file, String dir) throws IOException{
taos.putArchiveEntry(new TarArchiveEntry(file, dir));
if (file.isFile()) {
BufferedInputStream bis = new BufferedInputStream(new FileInputStream(file));
IOUtils.copy(bis, taos);
taos.closeArchiveEntry();
bis.close();
}
else if(file.isDirectory()) {
taos.closeArchiveEntry();
for (File childFile : file.listFiles()) {
addFilesToCompression(taos, childFile, file.getName());
}
}
}