Java解压带密码的Rar压缩文件



RAR压缩算法是不公开的,所以这方面的开源项目不多

幸好有一个叫unrar的开源项目支持RAR的解压,但不能压缩RAR文件

不过,直接使用unrar却不能支持带密码的RAR文件解压,经过多方查找,终于在Google Code上面找到一个支持密码的unrar版本,下载地址:http://code.google.com/p/java-unrar/ 

该项目依赖Jar包:

commons-logging.jar  比较常用,可以到Apache官网下载

gnu-crypto.jar   可以在http://www.gnu.org/software/gnu-crypto/下载

下面是一个简单的解压示例:

  1. package com.ninemax.demo.rar;  
  2.   
  3. import java.io.File;  
  4. import java.io.FileOutputStream;  
  5. import java.io.IOException;  
  6. import java.io.OutputStream;  
  7.   
  8. import org.apache.commons.io.IOUtils;  
  9.   
  10. import de.innosystec.unrar.Archive;  
  11. import de.innosystec.unrar.exception.RarException;  
  12. import de.innosystec.unrar.rarfile.FileHeader;  
  13.   
  14. /** 
  15.  * RAR格式压缩文件解压工具类 
  16.  * 不支持RAR格式压缩 
  17.  * 支持中文,支持RAR压缩文件密码 
  18.  * 依赖jar包 
  19.  * commons-io.jar 
  20.  * commons-logging.jar 
  21.  * java-unrar-decryption-supported.jar 
  22.  * gnu-crypto.jar 
  23.  *  
  24.  * @author ninemax 
  25.  */  
  26. public class RarDecompressionUtil {  
  27.       
  28.     public static final String SEPARATOR = File.separator;  
  29.       
  30.     // =============================== RAR Format ================================  
  31.     /** 
  32.      * 解压指定RAR文件到当前文件夹 
  33.      * @param srcRar 指定解压 
  34.      *  @param password 压缩文件时设定的密码 
  35.      * @throws IOException  
  36.      */  
  37.     public static void unrar(String srcRar, String password) throws IOException {  
  38.         unrar(srcRar, null, password);  
  39.     }  
  40.       
  41.     /** 
  42.      * 解压指定的RAR压缩文件到指定的目录中 
  43.      * @param srcRar 指定的RAR压缩文件 
  44.      * @param destPath 指定解压到的目录 
  45.      *  @param password 压缩文件时设定的密码 
  46.      * @throws IOException  
  47.      */  
  48.     public static void unrar(String srcRar, String destPath, String password) throws IOException {  
  49.         File srcFile = new File(srcRar);  
  50.         if (!srcFile.exists()) {  
  51.             return;  
  52.         }  
  53.         if (null == destPath || destPath.length() == 0) {  
  54.             unrar(srcFile, srcFile.getParent(), password);  
  55.             return;  
  56.         }  
  57.         unrar(srcFile,destPath, password);  
  58.     }  
  59.       
  60.     /** 
  61.      * 解压指定RAR文件到当前文件夹 
  62.      * @param srcRarFile 解压文件 
  63.      *  @param password 压缩文件时设定的密码 
  64.      * @throws IOException  
  65.      */  
  66.     public static void unrar(File srcRarFile, String password) throws IOException {  
  67.         if (null == srcRarFile || !srcRarFile.exists()) {  
  68.             throw new IOException("指定文件不存在.");  
  69.         }  
  70.         unrar(srcRarFile, srcRarFile.getParent(),password);  
  71.     }  
  72.       
  73.     /** 
  74.      * 解压指定RAR文件到指定的路径 
  75.      * @param srcRarFile 需要解压RAR文件 
  76.      * @param destPath 指定解压路径 
  77.      * @param password 压缩文件时设定的密码 
  78.      * @throws IOException  
  79.      */  
  80.     public static void unrar(File srcRarFile, String destPath, String password) throws IOException {  
  81.         if (null == srcRarFile || !srcRarFile.exists()) {  
  82.             throw new IOException("指定压缩文件不存在.");  
  83.         }  
  84.         if (!destPath.endsWith(SEPARATOR)) {  
  85.             destPath += SEPARATOR;  
  86.         }  
  87.         Archive archive = null;  
  88.         OutputStream unOut = null;  
  89.         try {  
  90.             archive = new Archive(srcRarFile, password, false);  
  91.             FileHeader fileHeader = archive.nextFileHeader();  
  92.             while(null != fileHeader) {  
  93.                 if (!fileHeader.isDirectory()) {  
  94.                     // 1 根据不同的操作系统拿到相应的 destDirName 和 destFileName  
  95.                     String destFileName = "";  
  96.                     String destDirName = "";  
  97.                     if (SEPARATOR.equals("/")) {        // 非windows系统  
  98.                         destFileName = (destPath + fileHeader.getFileNameW()).replaceAll("\\\\", "/");  
  99.                         destDirName = destFileName.substring(0, destFileName.lastIndexOf("/"));  
  100.                     } else {        // windows系统  
  101.                         destFileName = (destPath + fileHeader.getFileNameW()).replaceAll("/""\\\\");  
  102.                         destDirName = destFileName.substring(0, destFileName.lastIndexOf("\\"));  
  103.                     }  
  104.                     // 2创建文件夹  
  105.                     File dir = new File(destDirName);  
  106.                     if (!dir.exists() || !dir.isDirectory()) {  
  107.                         dir.mkdirs();  
  108.                     }  
  109.                     // 抽取压缩文件  
  110.                     unOut = new FileOutputStream(new File(destFileName));  
  111.                     archive.extractFile(fileHeader, unOut);  
  112.                     unOut.flush();  
  113.                     unOut.close();  
  114.                 }  
  115.                 fileHeader = archive.nextFileHeader();  
  116.             }  
  117.             archive.close();  
  118.         } catch (RarException e) {  
  119.             e.printStackTrace();  
  120.         } finally {  
  121.             IOUtils.closeQuietly(unOut);  
  122.         }  
  123.     }  
  124. }  
package com.ninemax.demo.rar;

import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.OutputStream;

import org.apache.commons.io.IOUtils;

import de.innosystec.unrar.Archive;
import de.innosystec.unrar.exception.RarException;
import de.innosystec.unrar.rarfile.FileHeader;

/**
 * RAR格式压缩文件解压工具类
 * 不支持RAR格式压缩
 * 支持中文,支持RAR压缩文件密码
 * 依赖jar包
 * commons-io.jar
 * commons-logging.jar
 * java-unrar-decryption-supported.jar
 * gnu-crypto.jar
 * 
 * @author ninemax
 */
public class RarDecompressionUtil {
	
	public static final String SEPARATOR = File.separator;
	
	// =============================== RAR Format ================================
	/**
	 * 解压指定RAR文件到当前文件夹
	 * @param srcRar 指定解压
	 *  @param password 压缩文件时设定的密码
	 * @throws IOException 
	 */
	public static void unrar(String srcRar, String password) throws IOException {
		unrar(srcRar, null, password);
	}
	
	/**
	 * 解压指定的RAR压缩文件到指定的目录中
	 * @param srcRar 指定的RAR压缩文件
	 * @param destPath 指定解压到的目录
	 *  @param password 压缩文件时设定的密码
	 * @throws IOException 
	 */
	public static void unrar(String srcRar, String destPath, String password) throws IOException {
		File srcFile = new File(srcRar);
		if (!srcFile.exists()) {
			return;
		}
		if (null == destPath || destPath.length() == 0) {
			unrar(srcFile, srcFile.getParent(), password);
			return;
		}
		unrar(srcFile,destPath, password);
	}
	
	/**
	 * 解压指定RAR文件到当前文件夹
	 * @param srcRarFile 解压文件
	 *  @param password 压缩文件时设定的密码
	 * @throws IOException 
	 */
	public static void unrar(File srcRarFile, String password) throws IOException {
		if (null == srcRarFile || !srcRarFile.exists()) {
			throw new IOException("指定文件不存在.");
		}
		unrar(srcRarFile, srcRarFile.getParent(),password);
	}
	
	/**
	 * 解压指定RAR文件到指定的路径
	 * @param srcRarFile 需要解压RAR文件
	 * @param destPath 指定解压路径
	 * @param password 压缩文件时设定的密码
	 * @throws IOException 
	 */
	public static void unrar(File srcRarFile, String destPath, String password) throws IOException {
		if (null == srcRarFile || !srcRarFile.exists()) {
			throw new IOException("指定压缩文件不存在.");
		}
		if (!destPath.endsWith(SEPARATOR)) {
			destPath += SEPARATOR;
		}
		Archive archive = null;
		OutputStream unOut = null;
		try {
			archive = new Archive(srcRarFile, password, false);
			FileHeader fileHeader = archive.nextFileHeader();
			while(null != fileHeader) {
				if (!fileHeader.isDirectory()) {
					// 1 根据不同的操作系统拿到相应的 destDirName 和 destFileName
					String destFileName = "";
					String destDirName = "";
					if (SEPARATOR.equals("/")) {		// 非windows系统
						destFileName = (destPath + fileHeader.getFileNameW()).replaceAll("\\\\", "/");
						destDirName = destFileName.substring(0, destFileName.lastIndexOf("/"));
					} else {		// windows系统
						destFileName = (destPath + fileHeader.getFileNameW()).replaceAll("/", "\\\\");
						destDirName = destFileName.substring(0, destFileName.lastIndexOf("\\"));
					}
					// 2创建文件夹
					File dir = new File(destDirName);
					if (!dir.exists() || !dir.isDirectory()) {
						dir.mkdirs();
					}
					// 抽取压缩文件
					unOut = new FileOutputStream(new File(destFileName));
					archive.extractFile(fileHeader, unOut);
					unOut.flush();
					unOut.close();
				}
				fileHeader = archive.nextFileHeader();
			}
			archive.close();
		} catch (RarException e) {
			e.printStackTrace();
		} finally {
			IOUtils.closeQuietly(unOut);
		}
	}
}

相关资源下载地址:

http://code.google.com/p/java-unrar/downloads/list

或者

http://download.csdn.net/detail/zhangyihui1986/4415967

压缩文件方法 该方法需要引用zip4j的jar文件 单个文件、多个文件压缩 /** * 使用给定密码压缩指定文件或文件夹到指定位置. * * dest可传最终压缩文件存放的绝对路径,也可以传存放目录,也可以传null或者"". * 如果传null或者""则将压缩文件存放在当前目录,即跟源文件同目录,压缩文件名取源文件名,以.zip为后缀; * 如果以路径分隔符(File.separator)结尾,则视为目录,压缩文件名取源文件名,以.zip为后缀,否则视为文件名. * @param src 要压缩的文件或文件夹路径 * @param dest 压缩文件存放路径 * @param isCreateDir 是否在压缩文件里创建目录,仅在压缩文件为目录时有效. * 如果为false,将直接压缩目录下文件到压缩文件. * @param passwd 压缩使用的密码 * @return 最终的压缩文件存放的绝对路径,如果为null则说明压缩失败. */ 方法详细见文件! 可选择文件list压缩 /** * 使用给定密码压缩指定文件list * dest可传最终压缩文件存放的绝对路径,也可以传存放目录,也可以传null或者"". * 如果传null或者""则将压缩文件存放在当前目录,即跟源文件同目录,压缩文件名取源文件名,以.zip为后缀; * 如果以路径分隔符(File.separator)结尾,则视为目录,压缩文件名取源文件名,以.zip为后缀,否则视为文件名. * @param src 要压缩的文件集合 * @param dest 压缩文件存放路径 * @param isCreateDir 是否在压缩文件里创建目录,仅在压缩文件为目录时有效. * 如果为false,将直接压缩目录下文件到压缩文件. * @param passwd 压缩使用的密码 * @return 最终的压缩文件存放的绝对路径,如果为null则说明压缩失败. */ 方法详细见文件! 解压 /** * 使用给定密码解压指定的ZIP压缩文件到指定目录 * * 如果指定目录不存在,可以自动创建,不合法的路径将导致异常被抛出 * @param zipFile 指定的ZIP压缩文件 * @param dest 解压目录 * @param passwd ZIP文件的密码 * @return 解压后文件数组 * @throws ZipException 压缩文件有损坏或者解压缩失败抛出 */ 方法详细见文件! 一个简单的demo 欢迎大家指点,一起提升
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值