我们平时实现下载需求的时候,都是单个文件的下载。但有时候用户需要一次性下载多个文件,并且保存在一个压缩包中,用于转发给其他人,那么就需要打包下载了。
用于直接将文件写入到压缩包中,因为是要将多个文件,写入到压缩包中,所以这里是输出流。如果是读取压缩包里面的数据,则用输入流。
压缩包文件中的实体类。比如一个压缩包里面有几个文件,那么里面的每个文件都是一个ZipEntry.
import javax.swing.filechooser.FileSystemView;
import java.io.*;
import java.util.ArrayList;
import java.util.List;
import java.util.zip.ZipEntry;
import java.util.zip.ZipOutputStream;
/**
* @author 三文鱼先生
* @title
* @description
* @date 2022/7/27
**/
public class Test {
public static void main(String[] args) throws Exception {
List<String> list = new ArrayList<>();
//这里输入本机的文件路径
list.add("文件路径1");
list.add("文件路径2");
list.add("文件路径3");
packageZip(list , "测试");
}
//这里需要打包的文件list以字符串传递
public static void packageZip(List<String> list , String zipName) throws Exception {
//默认存储到桌面
File zipFile = new File(getDesktop() + File.separator + zipName + ".zip");
if (zipFile.exists())
throw new Exception("文件已存在!");
if(list == null || list.size() == 0)
throw new Exception("打包文件为空!");
FileInputStream fileInputStream = null;
BufferedInputStream bufferedInputStream = null;
//一次传输10k
byte[] bytes = new byte[1024*10];
try(
//zip的输出流
FileOutputStream outputStream = new FileOutputStream(zipFile);
ZipOutputStream zipOutputStream = new ZipOutputStream(outputStream)
) {
for (String s : list) {
File file = new File(s);
//单个文件的输入流
fileInputStream = new FileInputStream(file);
bufferedInputStream = new BufferedInputStream(fileInputStream , 1024*10);
//单个文件输出到zip文件中
ZipEntry zipEntry = new ZipEntry(file.getName());
zipOutputStream.putNextEntry(zipEntry);
int i = 0;
//单个文件以流的形式写入
while ((i = bufferedInputStream.read(bytes , 0 , 1024*10)) != -1) {
zipOutputStream.write(bytes , 0 , i);
}
//这里需要关闭单个文件的输入流
bufferedInputStream.close();
}
}catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}finally {
if (bufferedInputStream != null) bufferedInputStream.close();
}
}
//获取桌面路路径
public static String getDesktop() {
File desktopDir = FileSystemView.getFileSystemView()
.getHomeDirectory();
return desktopDir.getAbsolutePath();
}
}
参考之前的文章记SpringBoot下载的两种方式。
稍微修改一下即可,打包下载就不需要对文件进行分类下载了。逻辑变成压缩打包 -> 下载压缩包。需要值得注意的是,下载完需要把打包在服务器上的压缩吧,delete一下。