本文主要是介绍SpringMVC下压缩文件下载,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
最近在做文件下载的功能,由于下载的是图片,内容比较大,所以需要先在服务器端进行压缩,压缩后下载到用户本地。
文件下载的步骤:
1)在服务器端建立一个临时压缩文件
2)找到文件路径,用JDK自带的API进行文件压缩
3)将zip文件下载,文件流输出
4)删除服务器端临时文件
文件下载:
@Controller
@RequestMapping(value = "${/multidownload")
public class MultiResouceDownload extends BaseController{@RequestMapping(value = "/downloadZip")public String downloadFiles(List<File> files,HttpServletRequest request,HttpServletResponse response)throws ServletException, IOException { String fileName = UUID.randomUUID().toString() + ".zip";// 在服务器端创建打包下载的临时文件String outFilePath = request.getSession().getServletContext().getRealPath("/");File fileZip = new File(outFilePath + fileName);// 文件输出流FileOutputStream outStream = new FileOutputStream(fileZip);// 压缩流ZipOutputStream zipOutStream = new ZipOutputStream(outStream);zipFile(files, zipOutStream);zipOutStream.close();outStream.close();this.downloadFile(fileZip, response, true);return null;}
循环遍历多个文件方法:
//循环压缩多个文件public static void zipFile(List<File> files, ZipOutputStream outputStream) throws IOException, ServletException {try {int size = files.size();// 压缩列表中的文件for (int i = 0; i < size; i++) {File file = (File) files.get(i);zipFile(file, outputStream);}} catch (IOException e) {throw e;}}
文件压缩方法:
public static void zipFile(File inputFile, ZipOutputStream outputstream) throws IOException, ServletException {try {if (inputFile.exists()) {if (inputFile.isFile()) {FileInputStream inStream = new FileInputStream(inputFile);BufferedInputStream bInStream = new BufferedInputStream(inStream);ZipEntry entry = new ZipEntry(inputFile.getName());outputstream.putNextEntry(entry);final int MAX_BYTE = 10 * 1024 * 1024; // 最大的流为10Mlong streamTotal = 0; // 接受流的容量int streamNum = 0; // 流需要分开的数量int leaveByte = 0; // 文件剩下的字符数byte[] inOutbyte; // byte数组接受文件的数据streamTotal = bInStream.available(); // 通过available方法取得流的最大字符数streamNum = (int) Math.floor(streamTotal / MAX_BYTE); // 取得流文件需要分开的数量leaveByte = (int) streamTotal % MAX_BYTE; // 分开文件之后,剩余的数量if (streamNum > 0) {for (int j = 0; j < streamNum; ++j) {inOutbyte = new byte[MAX_BYTE];// 读入流,保存在byte数组bInStream.read(inOutbyte, 0, MAX_BYTE);outputstream.write(inOutbyte, 0, MAX_BYTE); // 写出流}}// 写出剩下的流数据inOutbyte = new byte[leaveByte];bInStream.read(inOutbyte, 0, leaveByte);outputstream.write(inOutbyte);outputstream.closeEntry(); // Closes the current ZIP entrybInStream.close(); // 关闭inStream.close();}} else {throw new ServletException("文件不存在!");}} catch (IOException e) {throw e;}}
总结:
上述方法就能实现文件的压缩下载,但仔细分析发现还是少一些东西,进行压缩前没有进行校验,不能验证数据的正确性,还需要进行修改,目前正在探索中。。。。
这篇关于SpringMVC下压缩文件下载的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!