1.实现的效果:
外层一个文件夹 里面有多个文件,整个文件以zip格式被下载下来
2.实现思路:
①定义文件夹和文件的公共路径temPath,需要注意的是路径问题,原因是默认情况下,java.io 包中的类总是根据当前用户目录来解析相对路径名。此目录由系统属性 user.dir 指定,通常是 Java 虚拟机的调用目录,可以使用下面这个链接的这些路径
Java System.getProperty("java.io.tmpdir") 获取系统临时目录 - 1161588342 - 博客园 (cnblogs.com)https://www.cnblogs.com/eason-d/p/8124983.html② ClassPathResource bzRes = new ClassPathResource("templates/excels/备注.xlsx"),定义模板文件路径,不能写绝对路径,要用这个方式去获取(Resource目录下使用)
③使用easyExcel将数据填充到模板当中,并写到指定路径(extportBzPath )
④走到这里时,我们的文件结构是这样的,需要把excel文件添加到zip包中,addZipFile这个方法
File sourceFile(原文件地址),String name(新文件名),ZipOutputStream zos(ZipOutputStream )
@Override
public void selectRemarkFill(HttpServletResponse response) throws Exception {
private final String BASE_TEMP_PATH =System.getProperty("java.io.tmpdir");
//zip
String zipName = "下载Excel.zip";
String extportBz ="备注.xlsx";
//导出
//定义公共路径
String tempPath =BASE_TEMP_PATH+UUID.randomUUID().toString()+ File.separator;
//创建tempPath路径的文件夹
boolean isSu = new File(tempPath).mkdir();
if(isSu){
//压缩包的路径
String zipPath =tempPath+zipName;
String extportBzPath = tempPath+extportBz;
RemarkFill remarkFill = partyMemberMapper.selectRemarkFill();
ClassPathResource bzRes = new ClassPathResource("templates/excels/备注.xlsx");
EasyExcel.write(extportBzPath).withTemplate(bzRes.getFile()).sheet().doFill(remarkFill);
private void addZipFile(File sourceFile,String name,ZipOutputStream zos) throws Exception {
byte[] buf = new byte[4096];
// 向zip输出流中添加一个zip实体,构造器中name为zip实体的文件的名字
zos.putNextEntry(new ZipEntry(name));
// 将文件sourceFile添加到输入流当中
try(FileInputStream in = new FileInputStream(sourceFile)){
int len;
//读取输入流中的字节并写出
while ((len = in.read(buf)) != -1){
zos.write(buf, 0, len);
}
// Complete the entry
zos.closeEntry();
}
}
⑤将生成的“下载Excel.zip”包下载
如何实现文件下载
要实现文件下载,我们只需要设置两个特殊的相应头,它们是什么头?如果文件名带中文,该如何解决?
两个特殊的相应头:
----Content-Type: application/octet-stream
----Content-Disposition: attachment;filename=+java.net.URLEncoder.encode(zipName, "UTF-8")
例如:
response.setContentType("image/jpeg");
response.setHeader("Content- Disposition","attachment;filename=Bluehills.jpg");
如果文件中filename参数中有中文,则就会出现乱码
解决办法:
filename=+java.net.URLEncoder.encode(zipName, "UTF-8")
//下载
File downLoadFile = new File(zipPath);
try(OutputStream out = response.getOutputStream();
FileInputStream in = new FileInputStream(downLoadFile);){
//设置响应头,控制浏览器下载该文件
response.setHeader("Content-Type","application/octet-stream");
response.setHeader("Content-Disposition",
"attachment;filename="+java.net.URLEncoder.encode(zipName, "UTF-8"));
byte[] buffer = new byte[4096];
int read = 0;
while((read = in.read(buffer)) != -1){
out.write(buffer, 0, read);
}
System.out.println("zip下载路径:"+zipPath);
}finally {
try {
//删除压缩包
if(downLoadFile.exists()){
downLoadFile.delete();
}
}catch (Exception e){
e.printStackTrace();
}
}