java实现文件夹解压和压缩
作者:Supper猿 时间:2022-06-07 03:00:39
本文实例为大家分享了java实现文件夹解压和压缩的具体代码,供大家参考,具体内容如下
效果
实现多个文件以及文件夹的压缩和解压
代码分析
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.util.zip.ZipEntry;
import java.util.zip.ZipInputStream;
import java.util.zip.ZipOutputStream;
public class Main {
public static void main(String[] args) throws IOException {
//解决中文乱码
//压缩 参数改成你自己的源文件路径和压缩后的文件路径
//yasuo("C:\\file\\", "C:\\file.zip");
//解压 参数改成你自己的源文件路径和解压后的文件路径
jieya("C:\\file.zip", "C:\\file\\");
}
public static void jieya(String zipPath, String path) throws IOException, FileNotFoundException {
//创建解压后的文件夹
File pt=new File(path.substring(0,path.length()-1));
if(!pt.exists()) {
pt.mkdirs();
}
//try(resource)来保证InputStream正确关闭
try(ZipInputStream zip=new ZipInputStream(new FileInputStream(zipPath))){
//ZipEntry表示一个压缩文件或目录
ZipEntry entry;
while((entry=zip.getNextEntry())!=null) {
String name=entry.getName();
//压缩文件
if(!(entry.getName().contains(File.separator))) {
FileOutputStream file= new FileOutputStream( path+ name);
int n=0;
while((n=zip.read())!=-1) {
file.write(n);
}
}else {
//目录
int index=name.lastIndexOf("\\");
File file= new File(path+ name.substring(0,index));
if(!file.exists()) {
file.mkdirs();
}
//如果不是空目录
if(index!=name.length()-1) {
FileOutputStream f= new FileOutputStream( path+ name);
int n=0;
while((n=zip.read())!=-1) {
f.write(n);
}
}
}
}
zip.closeEntry();
}
}
public static void yasuo(String path, String zipPath) throws IOException, FileNotFoundException {
File zp=new File(zipPath);
if(!zp.exists()) {
zp.createNewFile();
}
try(ZipOutputStream zip=new ZipOutputStream(new FileOutputStream(zp))) {
File files= new File(path);
File[] f=files.listFiles();
for (File file : f) {
zipAll(zip, file,file.getName());
}
}
}
public static void zipAll(ZipOutputStream zip, File files,String name) throws IOException, FileNotFoundException {
if(files.isDirectory()) {
File[] files2=files.listFiles();
if(files2.length==0||files2==null) {
zip.putNextEntry(new ZipEntry(name+File.separator));
}else{
for (File file2 : files2) {
if(file2.isFile()) {
zip.putNextEntry(new ZipEntry(name+File.separator+file2.getName()));
int n;
FileInputStream input=new FileInputStream(file2);
while((n=input.read())!=-1) {
zip.write(n);
}
}
else {
zipAll(zip,file2,name+File.separator+file2.getName());
}
}
}
}else {
zip.putNextEntry(new ZipEntry(name));
int n;
FileInputStream input=new FileInputStream(files);
while ((n=input.read())!=-1) {
zip.write(n);
}
}
}
}
小结
压缩
ZipOutputStream可以把多份数据写入zip包;
解压
ZipInputStream可以读取zip格式的流;
来源:https://blog.csdn.net/weixin_45076969/article/details/104426559
标签:java,解压,压缩
0
投稿
猜你喜欢
深入了解Java ServletContext
2023-11-08 22:36:27
初步认识C#中的Lambda表达式和匿名方法
2023-07-03 00:23:28
Android自定义输入法软键盘
2023-04-20 05:51:54
浅谈让@Value更方便的Spring自定义转换类
2023-10-06 14:01:02
Java之SSM中bean相关知识汇总案例讲解
2021-11-10 06:16:26
Android开启动画之渐隐渐现效果
2021-07-21 08:45:28
Recyclerview添加头布局和尾布局、item点击事件详解
2022-04-19 12:38:12
日常收集C#接口知识(知识全面)
2022-09-01 19:02:44
C#获取每个年,月,周的起始日期和结束日期的方法
2023-11-11 20:53:45
c# 如何实现一个简单的json解析器
2021-06-10 15:02:54
谷歌被屏蔽后如何搭建安卓环境
2022-10-23 02:07:36
如何在IDEA Maven项目中导入本地jar包的步骤
2023-03-25 06:43:48
微信支付仅能成功调用一次问题的解决方法(Android)
2021-07-27 10:40:17
ReactNative Alert详解及实例代码
2022-07-04 15:02:46
java集合继承关系图分享
2023-04-25 17:17:23
spring mvc中@RequestBody注解的作用说明
2022-04-07 14:15:02
Android开发 OpenGL ES绘制3D 图形实例详解
2023-01-12 00:06:09
Android实现倒计时的方案梳理
2022-04-29 00:48:31
C语言实现扫雷游戏(含注释详解)
2023-11-02 15:25:07
SpringCloud eureka(server)微服务集群搭建过程
2023-05-22 15:08:55