JAVA 的文件的解压缩

1.对于ZIP格式

  (1)需要依赖

 <dependency>
     		<groupId>org.apache.ant</groupId>
      		<artifactId>ant</artifactId>
      		<version>1.8.2</version>
		</dependency>

  (2) 工具类

/**
     * 压缩文件
     * @param zipFilePath 压缩的文件完整名称(目录+文件名)
     * @param srcPathName 需要被压缩的文件或文件夹
     * @author leo
     * @since 3.5.6_2016年12月22日
     */
    public static void compressFiles(String zipFilePath, String srcPathName) {
        File zipFile = new File(zipFilePath);
        File srcdir = new File(srcPathName);
        if (!srcdir.exists()){
            throw new RuntimeException(srcPathName + "不存在!");
        }
        Project prj = new Project();
        FileSet fileSet = new FileSet();
        fileSet.setProject(prj);
        if(srcdir.isDirectory()) { //是目录
            fileSet.setDir(srcdir);
            fileSet.setIncludes("*.csv"); //包括哪些文件或文件夹 eg:zip.setIncludes("*.java");
            //fileSet.setExcludes(...); //排除哪些文件或文件夹
        } else {
            fileSet.setFile(srcdir);
        }
        Zip zip = new Zip();
        zip.setProject(prj);
        zip.setDestFile(zipFile);
        zip.setEncoding("gbk"); //以gbk编码进行压缩,注意windows是默认以gbk编码进行压缩的
        zip.addFileset(fileSet);
        zip.execute();
        CAUDAASLog.error(log,"文件压缩失败");
    }

    /**
     * 解压文件到指定目录
     * @param zipFile 目标文件
     * @param descDir 解压目录
     * @author isDelete 是否删除目标文件
     */
    @SuppressWarnings("unchecked")
    public static void unZipFiles(String zipFilePath, String fileSavePath, boolean isDelete) throws Exception{
         try {
                File f = new File(zipFilePath);
                if ((!f.exists()) && (f.length() <= 0)) {
                    throw new RuntimeException("要解压的文件不存在!");
                }
                //一定要加上编码,之前解压另外一个文件,没有加上编码导致不能解压
                ZipFile zipFile = new ZipFile(f, "gbk");
                String strPath, gbkPath, strtemp;
                strPath = fileSavePath;// 输出的绝对位置
                Enumeration<ZipEntry> e = zipFile.getEntries();
                while (e.hasMoreElements()) {
                    org.apache.tools.zip.ZipEntry zipEnt = e.nextElement();
                    gbkPath = zipEnt.getName();
                    strtemp = strPath + File.separator + gbkPath;
                    if (zipEnt.isDirectory()) { //目录
                        File dir = new File(strtemp);
                        if(!dir.exists()){
                            dir.mkdirs();
                        }
                        continue;
                    } else {
                        // 读写文件
                        InputStream is = zipFile.getInputStream(zipEnt);
                        BufferedInputStream bis = new BufferedInputStream(is);
                        // 建目录
                        String strsubdir = gbkPath;
                        for (int i = 0; i < strsubdir.length(); i++) {
                            if (strsubdir.substring(i, i + 1).equalsIgnoreCase("/")) {
                                String temp = strPath + File.separator
                                        + strsubdir.substring(0, i);
                                File subdir = new File(temp);
                                if (!subdir.exists())
                                    subdir.mkdir();
                            }
                        }
                        FileOutputStream fos = new FileOutputStream(strtemp);
                        BufferedOutputStream bos = new BufferedOutputStream(fos);
                        int len;
                        byte[] buff = new byte[1024];
                        while ((len = bis.read(buff)) != -1) {
                            bos.write(buff, 0, len);
                        }
                        bos.close();
                        fos.close();
                    }
                }
                zipFile.close();
            } catch (Exception e) {
            	CAUDAASLog.error(log, "解压文件出现异常:", e);
                throw e;
            }
         /**
          * 文件不能删除的原因:
          * 1.看看是否被别的进程引用,手工删除试试(删除不了就是被别的进程占用)
            2.file是文件夹 并且不为空,有别的文件夹或文件,
            3.极有可能有可能自己前面没有关闭此文件的流(我遇到的情况)
          */
         if (isDelete) {
             boolean flag = new File(zipFilePath).delete();
             CAUDAASLog.info(log,"删除源文件结果: " + flag);
         }
         CAUDAASLog.info(log,"compress files success");
    }

2.对于RAR格式:对于rar格式的解压,目前只有rar4的压缩可以解压成功,具体是jar版本太低

(1)需要依赖

 

<dependency>
   			<groupId>com.github.junrar</groupId>
   			<artifactId>junrar</artifactId>
  			 <version>0.7</version>
		</dependency>

(2)工具类


/**
	 * 根据原始rar路径,解压到指定文件夹下.
	 * 
	 * @param srcRarPath
	 *            原始rar路径
	 * @param dstDirectoryPath
	 *            解压到的文件夹
	 */
	public static void unRarFile(String srcRarPath, String dstDirectoryPath,boolean isDelete) {
		if (!srcRarPath.toLowerCase().endsWith(".rar")) {
			System.out.println("非rar文件!");
			CAUDAASLog.error(log,"需解压的包非rar文件!");
			return;
		}
		File dstDiretory = new File(dstDirectoryPath);
		if (!dstDiretory.exists()) {// 目标目录不存在时,创建该文件夹
			dstDiretory.mkdirs();
		}
		Archive a = null;
		try {
			a = new Archive(new File(srcRarPath));
			if (a != null) {
				// a.getMainHeader().print(); // 打印文件信息.
				FileHeader fh = a.nextFileHeader();
				while (fh != null) {
					// 防止文件名中文乱码问题的处理
					String fileName = fh.getFileNameW().isEmpty() ? fh
							.getFileNameString() : fh.getFileNameW();
					if (fh.isDirectory()) { // 文件夹
						File fol = new File(dstDirectoryPath + File.separator
								+ fileName);
						fol.mkdirs();
					} else { // 文件
						File out = new File(dstDirectoryPath + File.separator
								+ fileName.trim());
						try {
							if (!out.exists()) {
								if (!out.getParentFile().exists()) {// 相对路径可能多级,可能需要创建父目录.
									out.getParentFile().mkdirs();
								}
								out.createNewFile();
							}
							FileOutputStream os = new FileOutputStream(out);
							a.extractFile(fh, os);
							os.close();
						} catch (Exception ex) {
							ex.printStackTrace();
						}
					}
					fh = a.nextFileHeader();
				}
				a.close();
			}
		} catch (Exception e) {
			e.printStackTrace();
		}
		 if (isDelete) {
             boolean flag = new File(srcRarPath).delete();
             CAUDAASLog.info(log,"删除源文件结果: " + flag);
         }
         CAUDAASLog.info(log,"compress files success");
	}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值