欢迎大家来到IT世界,在知识的湖畔探索吧!
package com.biubiu.utils;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.util.zip.ZipEntry;
import java.util.zip.ZipOutputStream;
public class Utils {
public static void zipDir(String sourcePath, String zipPath) throws Exception {
ZipOutputStream zos = null;
FileInputStream fis = null;
try {
zos = new ZipOutputStream(new FileOutputStream(zipPath));
File sourceDir = new File(sourcePath);
File[] listFiles = sourceDir.listFiles();
for (File file : listFiles) {
// 向zip输出流中添加一个zip实体,构造器中name为zip实体的文件的名字
zos.putNextEntry(new ZipEntry(sourceDir.getName() + File.separator + file.getName()));
// copy文件到zip输出流中
int len;
fis = new FileInputStream(file);
byte[] buffer = new byte[2048];
while ((len = fis.read(buffer)) != -1) {
zos.write(buffer, 0, len);
zos.flush();
}
if (fis != null) {
fis.close();
}
}
} catch (Exception e) {
throw new Exception("创建ZIP文件失败");
} finally {
if (zos != null) {
zos.close();
}
if (fis != null) {
fis.close();
}
}
}
}
欢迎大家来到IT世界,在知识的湖畔探索吧!
免责声明:本站所有文章内容,图片,视频等均是来源于用户投稿和互联网及文摘转载整编而成,不代表本站观点,不承担相关法律责任。其著作权各归其原作者或其出版社所有。如发现本站有涉嫌抄袭侵权/违法违规的内容,侵犯到您的权益,请在线联系站长,一经查实,本站将立刻删除。 本文来自网络,若有侵权,请联系删除,如若转载,请注明出处:https://itzsg.com/22468.html