commons 圧縮ライブラリを使用してディレクトリの tar.gz を作成する際に問題が発生しています。次のようなディレクトリ構造があります。
parent/
child/
file1.raw
fileN.raw
次のコードを使用して圧縮を行っています。例外なく問題なく動作します。しかし、その tar.gz を解凍しようとすると、「childDirToCompress」という名前の単一のファイルが取得されます。正しいサイズであるため、tar プロセスでファイルが互いに明確に追加されています。望ましい出力はディレクトリです。何が間違っているのかわかりません。賢明なコモンズコンプレッサーで正しいパスを設定できますか?
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());
}
}
}