TEXT文件压缩.tar.gz文件

该代码段展示了一个Java方法,用于将指定的文件或目录压缩成.tar.gz格式。首先,它创建一个.tar文件,然后使用GzipCompressorOutputStream对.tar文件进行gzip压缩,生成.tar.gz文件。方法包括递归处理目录和单独处理文件的逻辑。
摘要由CSDN通过智能技术生成
public static void main(String[] args) {
	 String path=BaseDao.archive("c/txt.text");
 }
 /**
  * 执行压缩为.tar.gz文件路径
  * @param entry
  * @throws IOException
  * @author yutao
  * @return 
  */
public  String archive(String entry) throws IOException {
     File file = new File(entry);
	 //取出文件所在的文件夹 new FileOutputStream(file.getAbsolutePath().substring(0, file.getAbsolutePath().lastIndexOf('.')) + ".tar"
     TarArchiveOutputStream tos = new TarArchiveOutputStream(new FileOutputStream(file.getAbsolutePath().substring
	 (0, file.getAbsolutePath().lastIndexOf('.')) + ".tar"));
	 String base = file.getName();
     if(file.isDirectory()){
         archiveDir(file, tos, base);
     }else{
         archiveHandle(tos, file, base);
     }

     tos.close();
     //------------------------------------拼接压缩为.tar.gz文件
     String path=file.getAbsolutePath().substring(0, file.getAbsolutePath().lastIndexOf('.')) + ".dat";
     BufferedInputStream bis = new BufferedInputStream(new FileInputStream(path));

     GzipCompressorOutputStream gcos = new GzipCompressorOutputStream(new BufferedOutputStream(new FileOutputStream(path + ".gz")));

     byte[] buffer = new byte[1024];
     int read = -1;
     while((read = bis.read(buffer)) != -1){
         gcos.write(buffer, 0, read);
     }
     gcos.close();
     bis.close();
	 
     return path+ ".gz";
 }
 
 /**
  * 递归处理,准备好路径
  * @param file
  * @param tos
  * @param base 
  * @throws IOException
  * @author yutao
  */
 private static void archiveDir(File file, TarArchiveOutputStream tos, String basePath) throws IOException {
     File[] listFiles = file.listFiles();
     for(File fi : listFiles){
         if(fi.isDirectory()){
             archiveDir(fi, tos, basePath);
         }else{
             archiveHandle(tos, fi, basePath);
         }
     }
 }

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

java_才怪

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值