java实现rar压缩与解压缩

阅读更多

这里使用apache的commons工具包完成压缩与解压缩

第一步,在maven的pom.xml里加入依赖配置

< dependency >
     < groupId >org.apache.commons groupId >
     < artifactId >commons-compress artifactId >
     < version >1.5 version >
dependency >
< dependency >
    < groupId >commons-io groupId >
    < artifactId >commons-io artifactId >
    < version >1.4 version >
dependency >

 第二步,编写压缩解压缩代码,代码详见附件

 

第三步,测试压缩解压缩代码

public static void main(String[] args) {
  FileUtil.compressFile("E:\\思路创新\\北京局总量系统\\testrar.rar", "E:\\思路创新\\北京局总量系统\\bug");
  System.out.println("结束");
  FileUtil.unCompressFile("E:\\思路创新\\北京局总量系统\\testrar.rar", "E:\\思路创新\\北京局总量系统\\testrar");
  System.out.println("解压结束");
 }

 

 

 
  • FileUtil.zip (2 KB)
  • 下载次数: 60

你可能感兴趣的:(java实现rar压缩与解压缩)