共计 4337 个字符,预计需要花费 11 分钟才能阅读完成。
一、概述
在本篇文章中,给大家介绍一下如何将文件进行 zip 压缩以及如何对 zip 包解压。所有这些都是应用 Java 提供的外围库 java.util.zip 来实现的。
二、压缩文件
首先咱们来学习一个简略的例子 - 压缩单个文件。将一个名为 test1.txt 的文件压缩到一个名为 Compressed.zip 的 zip 文件中。
public class ZipFile {public static void main(String[] args) throws IOException {
// 输入压缩包
FileOutputStream fos = new FileOutputStream("src/main/resources/compressed.zip");
ZipOutputStream zipOut = new ZipOutputStream(fos);
// 被压缩文件
File fileToZip = new File("src/main/resources/test1.txt");
FileInputStream fis = new FileInputStream(fileToZip);
// 向压缩包中增加文件
ZipEntry zipEntry = new ZipEntry(fileToZip.getName());
zipOut.putNextEntry(zipEntry);
byte[] bytes = new byte[1024];
int length;
while((length = fis.read(bytes)) >= 0) {zipOut.write(bytes, 0, length);
}
zipOut.close();
fis.close();
fos.close();}
}
三、压缩多个文件
接下来,咱们看看如何将多个文件压缩为一个 zip 文件。咱们将把 test1.txt 和test2.txt压缩成multiCompressed.zip:
public class ZipMultipleFiles {public static void main(String[] args) throws IOException {List<String> srcFiles = Arrays.asList("src/main/resources/test1.txt", "src/main/resources/test2.txt");
FileOutputStream fos = new FileOutputStream("src/main/resources/multiCompressed.zip");
ZipOutputStream zipOut = new ZipOutputStream(fos);
// 向压缩包中增加多个文件
for (String srcFile : srcFiles) {File fileToZip = new File(srcFile);
FileInputStream fis = new FileInputStream(fileToZip);
ZipEntry zipEntry = new ZipEntry(fileToZip.getName());
zipOut.putNextEntry(zipEntry);
byte[] bytes = new byte[1024];
int length;
while((length = fis.read(bytes)) >= 0) {zipOut.write(bytes, 0, length);
}
fis.close();}
zipOut.close();
fos.close();}
}
四、压缩目录
上面的例子,咱们将 zipTest 目录及该目录下的递归子目录文件,全都压缩到dirCompressed.zip 中:
public class ZipDirectory {public static void main(String[] args) throws IOException, FileNotFoundException {
// 被压缩的文件夹
String sourceFile = "src/main/resources/zipTest";
// 压缩后果输入,即压缩包
FileOutputStream fos = new FileOutputStream("src/main/resources/dirCompressed.zip");
ZipOutputStream zipOut = new ZipOutputStream(fos);
File fileToZip = new File(sourceFile);
// 递归压缩文件夹
zipFile(fileToZip, fileToZip.getName(), zipOut);
// 敞开输入流
zipOut.close();
fos.close();}
/**
* 将 fileToZip 文件夹及其子目录文件递归压缩到 zip 文件中
* @param fileToZip 递归以后解决对象,可能是文件夹,也可能是文件
* @param fileName fileToZip 文件或文件夹名称
* @param zipOut 压缩文件输入流
* @throws IOException
*/
private static void zipFile(File fileToZip, String fileName, ZipOutputStream zipOut) throws IOException {
// 不压缩暗藏文件夹
if (fileToZip.isHidden()) {return;}
// 判断压缩对象如果是一个文件夹
if (fileToZip.isDirectory()) {if (fileName.endsWith("/")) {
// 如果文件夹是以“/”结尾,将文件夹作为压缩箱放入 zipOut 压缩输入流
zipOut.putNextEntry(new ZipEntry(fileName));
zipOut.closeEntry();} else {
// 如果文件夹不是以“/”结尾,将文件夹结尾加上“/”之后作为压缩箱放入 zipOut 压缩输入流
zipOut.putNextEntry(new ZipEntry(fileName + "/"));
zipOut.closeEntry();}
// 遍历文件夹子目录,进行递归的 zipFile
File[] children = fileToZip.listFiles();
for (File childFile : children) {zipFile(childFile, fileName + "/" + childFile.getName(), zipOut);
}
// 如果以后递归对象是文件夹,退出 ZipEntry 之后就返回
return;
}
// 如果以后的 fileToZip 不是一个文件夹,是一个文件,将其以字节码模式压缩到压缩包外面
FileInputStream fis = new FileInputStream(fileToZip);
ZipEntry zipEntry = new ZipEntry(fileName);
zipOut.putNextEntry(zipEntry);
byte[] bytes = new byte[1024];
int length;
while ((length = fis.read(bytes)) >= 0) {zipOut.write(bytes, 0, length);
}
fis.close();}
}
- 要压缩子目录及其子目录文件,所以须要递归遍历
- 每次遍历找到的是目录时,咱们都将其名称附加“/”, 并将其以 ZipEntry 保留到压缩包中,从而放弃压缩的目录构造。
- 每次遍历找到的是文件时,将其以字节码模式压缩到压缩包外面
五、解压缩 zip 压缩包
上面为大家举例解说解压缩 zip 压缩包。在此示例中,咱们将 compressed.zip 解压缩到名为 unzipTest 的新文件夹中。
public class UnzipFile {public static void main(String[] args) throws IOException {
// 被解压的压缩文件
String fileZip = "src/main/resources/unzipTest/compressed.zip";
// 解压的目标目录
File destDir = new File("src/main/resources/unzipTest");
byte[] buffer = new byte[1024];
ZipInputStream zis = new ZipInputStream(new FileInputStream(fileZip));
// 获取压缩包中的 entry,并将其解压
ZipEntry zipEntry = zis.getNextEntry();
while (zipEntry != null) {File newFile = newFile(destDir, zipEntry);
FileOutputStream fos = new FileOutputStream(newFile);
int len;
while ((len = zis.read(buffer)) > 0) {fos.write(buffer, 0, len);
}
fos.close();
// 解压实现一个 entry,再解压下一个
zipEntry = zis.getNextEntry();}
zis.closeEntry();
zis.close();}
// 在解压指标文件夹,新建一个文件
public static File newFile(File destinationDir, ZipEntry zipEntry) throws IOException {File destFile = new File(destinationDir, zipEntry.getName());
String destDirPath = destinationDir.getCanonicalPath();
String destFilePath = destFile.getCanonicalPath();
if (!destFilePath.startsWith(destDirPath + File.separator)) {throw new IOException("该解压项在指标文件夹之外:" + zipEntry.getName());
}
return destFile;
}
}
欢送关注我的博客,外面有很多精品合集
- 本文转载注明出处(必须带连贯,不能只转文字):字母哥博客。
感觉对您有帮忙的话,帮我点赞、分享!您的反对是我不竭的创作能源!。另外,笔者最近一段时间输入了如下的精品内容,期待您的关注。
- 《手摸手教你学 Spring Boot2.0》
- 《Spring Security-JWT-OAuth2 一本通》
- 《实战前后端拆散 RBAC 权限管理系统》
- 《实战 SpringCloud 微服务从青铜到王者》
- 《VUE 深入浅出系列》
正文完