Java 解压缩 zip格式的压缩文件

1 篇文章 0 订阅

可循环解压掉压缩文件中所有zip的文件

	/**
	 * 迭代解压ZIP文件,可将压缩包中包含的压缩文件组个解压
	 * @param zipPath 压缩文件路径
	 * @param unZipPath 解压后释放文件的目录
	 * @return 是否操作成功
	 */
	private static boolean unZip(String zipPath, String unZipPath) {
		int count = -1;
		File file = null;
		InputStream is = null;
		FileOutputStream fos = null;
		BufferedOutputStream bos = null;
		byte buf[] = new byte[2048];
		try {
			unZipPath = unZipPath
					+ File.separator
					+ zipPath.substring(
							zipPath.lastIndexOf(File.separator) + 1, zipPath
									.lastIndexOf("."));
			ZipFile zipFile = new ZipFile(zipPath);
			Enumeration<?> entries = zipFile.getEntries();
			while (entries.hasMoreElements()) {
				ZipEntry entry = (ZipEntry) entries.nextElement();
				String fileName = entry.getName();
				// 如果为目录条目,执行下列语句
				if (entry.isDirectory()) {
					File dir = new File(unZipPath + File.separator
							+ entry.getName());
					if (!dir.exists()) {
						dir.mkdirs();
					}
					continue;
				}
				String unZipDir = "";
				// 非目录
				if (fileName.indexOf("/") > 0) {
					unZipDir = fileName.substring(0, fileName.lastIndexOf("/"));
					fileName = fileName
							.substring(fileName.lastIndexOf("/") + 1);
				}
				File dir = new File(unZipPath + File.separator + unZipDir);
				if (!dir.exists()) {
					dir.mkdirs();
				}
				file = new File(unZipPath + File.separator + unZipDir, fileName);
				is = new BufferedInputStream(zipFile.getInputStream(entry));
				fos = new FileOutputStream(file);
				bos = new BufferedOutputStream(fos, 1024);
				while ((count = is.read(buf)) > -1) {
					bos.write(buf, 0, count);
				}
				fos.close();
				is.close();

				String fileType = fileName.substring(
						fileName.lastIndexOf(".") + 1, fileName.length());
				if ("zip".equals(fileType.toLowerCase())) {
					if (unZip(unZipPath + File.separator + fileName, unZipPath)) {
						file.delete();
					}
				}
			}
			zipFile.close();
			return true;
		} catch (IOException e) {
			e.printStackTrace();
			return false;
		}
	}

通过 Apache Ant 中tool.zip包实现对ZIP文件的解压缩,支持中文

ant.jar下载

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值