/**
* @Description
* @author xukaixun
* @param zipSavePath 压缩好的zip包存放路径
* @param sourceFile 待压缩的文件(单个文件或者整个文件目录)
* @return
*/
public static void zipCompress(String zipSavePath, File sourceFile){
try{
//创建zip输出流
ZipOutputStream zos = new ZipOutputStream(new FileOutputStream(zipSavePath));
compress(zos, sourceFile, sourceFile.getName());
zos.close();
}
catch(Exception e){
logger.error("zip compress file exception: {}, zipSavePath={}, sourceFile={}", e, zipSavePath, sourceFile.getName());
}
}
private static void compress(ZipOutputStream zos, File sourceFile, String fileName) throws Exception{
if(sourceFile.isDirectory()){
//如果是文件夹,取出文件夹中的文件(或子文件夹)
File[] fileList = sourceFile.listFiles();
if(fileList.length==0)//如果文件夹为空,则只需在目的地zip文件中写入一个目录进入点
{
zos.putNextEntry(new ZipEntry(fileName + "/"));
}
else//如果文件夹不为空,则递归调用compress,文件夹中的每一个文件(或文件夹)进行压缩
{
for(File file : fileList)
{
compress(zos, file, fileName + "/" + file.getName());
}
}
}else{
if(!sourceFile.exists()){
zos.putNextEntry(new ZipEntry("/"));
zos.closeEntry();
}else{
//单个文件,直接将其压缩到zip包中
zos.putNextEntry(new ZipEntry(fileName));
FileInputStream fis = new FileInputStream(sourceFile);
byte[] buf = new byte[1024];
int len;
//将源文件写入到zip文件中
while((len=fis.read(buf))!=-1)
{
zos.write(buf, 0, len);
}
zos.closeEntry();
fis.close();
}
}
}
public static void main(String[] args){
File file = new File("E:\\规则文件\\广西\\NR\\");
SimpleDateFormat sdf =new SimpleDateFormat("yyyyMMddHHmmss");
String timeDir = sdf.format(Calendar.getInstance().getTime());
zipCompress("E:\\" + "test" + File.separator + timeDir + ".zip",file);
}
————————————————
版权声明:本文为CSDN博主「jiraiya005」的原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/xukaixun005/article/details/80941433
相关文章
- 11-06python实现批量压缩文件夹
- 11-06winserver定时压缩备份文件夹
- 11-06删除GitHub或者GitLab 上的文件夹,git rm -r --ceched 文件夹名 ,提交commit,git push
- 11-06如何在shell脚本中判断文件或者文件夹是否存在?
- 11-06"xxxx".zip:这个压缩文件格式未知或者数据已经被损坏,打不开压缩文件,总出现这个提示的解决方法
- 11-06git clone 指定的单个目录或文件夹
- 11-06windows 下cmd命令删除文件或者文件夹
- 11-06fis3--压缩静态资源文件夹首选
- 11-06kali经常出现找不到包或者定位不到文件夹,更新源还不行,那是因为原来没有源,需要添加。
- 11-06【WPF】 打开本地的文件或者文件夹