如何使用cbzip2outputstream压缩多个文件



i使用cbzip2outputstream创建压缩BZIP文件。它有效。

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

如果我有file1,file2,file3,我希望它们在files.bz2中不在archive file.tar.bz2中。

可能?

bzip2只是单个文件的压缩机,因此不可能将多个文件放入bzip2文件中而不将它们放入存档文件中。

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

Apache Commons具有TarArchiveOutputStream(和TarArchiveInputStream),在这里很有用。

我理解,所以我使用的软件包与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");
    }
}

相关内容

  • 没有找到相关文章

最新更新