@RequestMapping(value = "xxx/xxx",method = RequestMethod.POST )
@ResponseBody
public Map<String,Object> feedBackDirectMultiDownload(HttpServletRequest request,HttpServletResponse response) throws IOException{
//压缩文件初始设置
String path="压缩文件想要放置的路径";
base_name = "zip文件名";
fileZip = base_name + ".zip"; // 拼接zip文件
filePath = path+"\\" + fileZip;//之后用来生成zip文件
//filePathArr为根据前台传过来的信息,通过数据库查询所得出的pdf文件路径集合(具体到后缀),此处省略
files = new File[fileNameArr.size()];//
for(int i=0;i<fileNameArr.size();i++){
files[i]=new File(fileNameArr.get(i).get("filePath"));//获取所有需要下载的pdf
}
// 创建临时压缩文件
try {
BufferedOutputStream bos = new BufferedOutputStream(new FileOutputStream(filePath));
ZipOutputStream zos = new ZipOutputStream(bos);
ZipEntry ze = null;
for (int i = 0; i < files.length; i++) {//将所有需要下载的pdf文件都写入临时zip文件
BufferedInputStream bis = new BufferedInputStream(new FileInputStream(files[i]));
ze = new ZipEntry(files[i].getName());
zos.putNextEntry(ze);
int s = -1;
while ((s = bis.read()) != -1) {
zos.write(s);
}
bis.close();
}
zos.flush();
zos.close();
} catch (IOException e) {
e.printStackTrace();
}
//以上,临时压缩文件创建完成
//进行浏览器下载
//获得浏览器代理信息
final String userAgent = request.getHeader("USER-AGENT");
//判断浏览器代理并分别设置响应给浏览器的编码格式
String finalFileName = null;
if(StringUtils.contains(userAgent, "MSIE")||StringUtils.contains(userAgent,"Trident")){//IE浏览器
finalFileName = URLEncoder.encode(fileZip,"UTF8");
System.out.println("IE浏览器");
}else if(StringUtils.contains(userAgent, "Mozilla")){//google,火狐浏览器
finalFileName = new String(fileZip.getBytes(), "ISO8859-1");
}else{
finalFileName = URLEncoder.encode(fileZip,"UTF8");//其他浏览器
}
response.setContentType("application/x-download");//告知浏览器下载文件,而不是直接打开,浏览器默认为打开
response.setHeader("Content-Disposition" ,"attachment;filename=\"" +finalFileName+ "\"");//下载文件的名称
ServletOutputStream servletOutputStream=response.getOutputStream();
DataOutputStream temps = new DataOutputStream(
servletOutputStream);
DataInputStream in = new DataInputStream(
new FileInputStream(filePath));//浏览器下载文件的路径
byte[] b = new byte[2048];
File reportZip=new File(filePath);//之后用来删除临时压缩文件
try {
while ((in.read(b)) != -1) {
temps.write(b);
}
temps.flush();
} catch (Exception e) {
e.printStackTrace();
}finally{
if(temps!=null) temps.close();
if(in!=null) in.close();
if(reportZip!=null) reportZip.delete();//删除服务器本地产生的临时压缩文件
servletOutputStream.close();
}
return null;
}
java后台批量下载文件压缩ZIP
最新推荐文章于 2025-05-23 17:19:30 发布