1

我使用 CBZip2OutputStream 创建一个压缩的 bzip 文件。有用。

但我想在一个 bzip 文件中压缩多个文件,但不使用 tar 存档。

如果我有file1、file2、file3,我希望它们在files.bz2 中而不是在归档files.tar.bz2 中。

有可能的 ?

4

2 回答 2

1

BZip2 仅是单个文件的压缩器,因此如果不先将多个文件放入存档文件,就无法将多个文件放入 Bzip2 文件中。

您可以将自己的文件开始和结束标记放入输出流,但最好使用标准存档格式。

Apache Commons 有TarArchiveOutputStream(and TarArchiveInputStream) 在这里会很有用。

于 2012-10-23T15:48:31.507 回答
0

我明白了,所以我使用了一个带有 TarOutputStream 类的包:

public void makingTarArchive(File[] inFiles, String inPathName) throws IOException{

    StringBuilder stringBuilder = new StringBuilder(inPathName);
    stringBuilder.append(".tar");

    String pathName = stringBuilder.toString() ;

    // Output file stream
    FileOutputStream dest = new FileOutputStream(pathName);

    // Create a TarOutputStream
    TarOutputStream out = new TarOutputStream( new BufferedOutputStream( dest ) );

    for(File f : inFiles){

        out.putNextEntry(new TarEntry(f, f.getName()));
        BufferedInputStream origin = new BufferedInputStream(new FileInputStream( f ));

        int count;
        byte data[] = new byte[2048];
        while((count = origin.read(data)) != -1) {

            out.write(data, 0, count);
        }

        out.flush();
        origin.close();
    }

    out.close();

    dest.close();

    File file = new File(pathName) ;

    createBZipFile(file);

    boolean success = file.delete();

    if (!success) {
        System.out.println("can't delete the .tar file");
    }
}
于 2012-10-24T13:08:31.337 回答