最全Java 代码实现rar解压操作
- 最全Java 代码实现rar解压操作
- 一、通过[com.github.junrar]实现winrar5.0以下版本解压
- 1、首先贴出来maven依赖,这里使用的是最高版本4.0,但是依然无法解决5.0及其以上的版本问题。
- 2、代码实现:优化了https://blog.csdn.net/fakergoing/article/details/82260699中的linux中\无法识别问题
- 3、该方法弊端
- 二、linux中安装unrar软件
- 1、unrar安装包
- 2、linux中安装unrar
- 3、Java中实现
- 4、关于Process proc = Runtime.getRuntime().exec(cmd);命令的补充说明
- 5、关于unrar在linux中的命令说明
- 2019-6-5更新
最全Java 代码实现rar解压操作
首先,非常感谢下面几位链接上的支持,之所以写这篇博文,主要在于总结,同时给第一次实现该功能的同学提供完整的参考。
因为第一次遇到需要在代码中实现rar和zip的解压操作。而zip其实很简单,jdk自带的ZipUtil就可以实现,这里不做赘述。但是rar的解压,特别是5.0及其以上版本的解压,折腾了我很久。根据这几位博主的思路,结合起来最终实现了对rar文件的解压。
unrar linux的安装:https://blog.51cto.com/lan2003/770497
rar的软件解压方式 :http://www.xitongzhijia.net/xtjc/20150513/48197.html
rar的第三方jar包解压方式:https://blog.csdn.net/fakergoing/article/details/82260699
一、通过[com.github.junrar]实现winrar5.0以下版本解压
1、首先贴出来maven依赖,这里使用的是最高版本4.0,但是依然无法解决5.0及其以上的版本问题。
<!-- https://mvnrepository.com/artifact/com.github.junrar/junrar -->
<dependency><groupId>com.github.junrar</groupId><artifactId>junrar</artifactId><version>4.0.0</version>
</dependency>
2、代码实现:优化了https://blog.csdn.net/fakergoing/article/details/82260699中的linux中\无法识别问题
/*** 根据原始rar路径,解压到指定文件夹下* 这种方法只能解压rar 5.0版本以下的,5.0及其以上的无法解决** @param srcRarPath 原始rar路径+name* @param dstDirectoryPath 解压到的文件夹*/public static String unRarFile(String srcRarPath, String dstDirectoryPath) throws Exception {log.debug("unRarFile srcRarPath:{}, dstDirectoryPath:{}", srcRarPath, dstDirectoryPath);if (!srcRarPath.toLowerCase().endsWith(".rar")) {log.warn("srcFilePath is not rar file");return "";}File dstDiretory = new File(dstDirectoryPath);// 目标目录不存在时,创建该文件夹if (!dstDiretory.exists()) {dstDiretory.mkdirs();}// @Cleanup Archive archive = new Archive(new File(srcRarPath)); com.github.junrar 0.7版本jarAPI@Cleanup Archive archive = new Archive(new FileInputStream(new File(srcRarPath)));if (archive != null) {// 打印文件信息archive.getMainHeader().print();FileHeader fileHeader = archive.nextFileHeader();while (fileHeader != null) {// 解决中文乱码问题【压缩文件中文乱码】String fileName = fileHeader.getFileNameW().isEmpty() ? fileHeader.getFileNameString() : fileHeader.getFileNameW();// 文件夹if (fileHeader.isDirectory()) {File fol = new File(dstDirectoryPath + File.separator + fileName.trim());fol.mkdirs();} else { // 文件// 解决linux系统中\分隔符无法识别问题String[] fileParts = fileName.split("\\\\");StringBuilder filePath = new StringBuilder();for (String filePart : fileParts) {filePath.append(filePart).append(File.separator);}fileName = filePath.substring(0, filePath.length() - 1);File out = new File(dstDirectoryPath + File.separator + fileName.trim());if (!out.exists()) {// 相对路径可能多级,可能需要创建父目录.if (!out.getParentFile().exists()) {out.getParentFile().mkdirs();}out.createNewFile();}@Cleanup FileOutputStream os = new FileOutputStream(out);archive.extractFile(fileHeader, os);}fileHeader = archive.nextFileHeader();}} else {log.warn("rar file decompression failed , archive is null");}return dstDirectoryPath;}
3、该方法弊端
最大的问题就在于无法实现winrar5.0及其以上版本的解压问题:WinRAR5之后,在rar格式的基础上,推出了另一种rar,叫RAR5,winrar官方并没有开源算法,jar包无法解析这种格式。
咱们先看一段源码
case MarkHeader:this.markHead = new MarkHeader(block);if (!this.markHead.isSignature()) {if (this.markHead.getVersion() == RARVersion.V5) {logger.warn("Support for rar version 5 is not yet implemented!");throw new RarException(RarExceptionType.unsupportedRarArchive);}throw new RarException(RarExceptionType.badRarArchive);}this.headers.add(this.markHead);break;
这是junrar的主类Archive中的rar版本判断语句,这里明确说明了对于5.0版本尚未实现。并且抛出了RarException的异常。
二、linux中安装unrar软件
1、unrar安装包
linux 32位:http://www.rarlab.com/rar/rarlinux-5.3.b4.tar.gz
linux 64位:http://www.rarlab.com/rar/rarlinux-x64-5.3.b4.tar.gz
由于是国外源,所以下载速度极慢,很可能下载不成功。
下面给出tar包,可以直接下载上传使用
【审核还没有通过,通过了再来补充连接】
2、linux中安装unrar
①上传unrar到linux服务器
如 /usr 路径
②解压到指定路径:
tar -zxf /usr/rarlinux-x64-5.7.1.tar.gz -C /usr/local/
③建立软连接:必须要有软连接,类似于jdk的环境变量,保证可以在任意目录下使用rar和unrar命令
ln -s /usr/local/rar/rar /usr/local/bin/rarln -s /usr/local/rar/unrar /usr/local/bin/unrar
④测试是否创建成功
**在任意路径输入下列命令**
rar
unrar
**出现如下信息表示安装成功**
RAR 5.71 Copyright (c) 1993-2019 Alexander Roshal 28 Apr 2019
Trial version Type 'rar -?' for help
3、Java中实现
/*** 采用命令行方式解压文件* 所有文件采用绝对路径** @param rarFilePath 压缩文件路径+文件名* @param destDir 解压结果路径* @return*/public static boolean unRar(String rarFilePath, String destDir) throws Exception {log.debug("begin unrar rarFilePath:{},destDir:{}", rarFilePath, destDir);boolean bool = false;File rarFile = new File(rarFilePath);if (!rarFile.exists()) {log.warn(":{} is not exist", rarFilePath);return false;}File destDirPath = new File(destDir);if (!destDirPath.exists()) {destDirPath.mkdirs();}// 开始调用命令行解压,参数-o+是表示覆盖的意思// String cmdPath = "C:\\Program Files\\WinRAR\\WinRAR.exe"; windows中的路径// String cmdPath = "/usr/local/bin/unrar"; 如果linux做了软连接 不需要这里配置路径String cmd = "rar" + " X -o+ " + rarFile + " " + destDir;log.debug("cmd :{}", cmd);Process proc = Runtime.getRuntime().exec(cmd);if (proc.waitFor() != 0) {if (proc.exitValue() == 0) {bool = false;}} else {bool = true;}log.debug("unRar " + (bool ? "success" : "failed"));return bool;}
4、关于Process proc = Runtime.getRuntime().exec(cmd);命令的补充说明
// 需要指定参数一:命令位置;参数二:-c表示先执行第一个参数;参数三:你的命令。
Runtime.getRuntime().exec(new String[]{"/bin/sh","c","xxx"});
// 如果执行了上面第三步,可以任意目录使用rar和unrar命令,则可以省略第一和第二个参数,直接使用第三个参数
5、关于unrar在linux中的命令说明
#解压
unrar x abc.rar 表示解压到同一个目录文件夹
unrar e abc.rar 解压出来是散开的
最后,有任何问题,欢迎讨论哦!
2019-6-5更新
rar linux版本的下载链接:
https://download.csdn.net/download/weixin_42418785/11188435
还有一种最简单的安装方式【使用yum安装】:
rpm -ivh http://mirrors.whsir.com/centos/whsir-release-centos.noarch.rpm
yum install rar