亚洲精品久久久中文字幕-亚洲精品久久片久久-亚洲精品久久青草-亚洲精品久久婷婷爱久久婷婷-亚洲精品久久午夜香蕉

您的位置:首頁技術文章
文章詳情頁

springboot單文件下載和多文件壓縮zip下載的實現

瀏覽:2日期:2023-04-11 11:01:20

單文件下載

//下載單個文件public void downloadFile(HttpServletResponse response){ String path = 'D:testce1.txt' File file = new File(path); if(file.exists()){ String fileName = file.getName(); response.setHeader('Content-Disposition', 'attachment;fileName=' + fileName); download(response,file); } }public void download(HttpServletResponse response,File file){ FileInputStream fis = null; BufferedInputStream bis = null; OutputStream os = null; try { os = response.getOutputStream(); fis = new FileInputStream(file); bis = new BufferedInputStream(fis); byte[] buffer = new byte[bis.available()]; int i = bis.read(buffer); while(i != -1){os.write(buffer, 0, i);i = bis.read(buffer); } } catch (Exception e) { e.printStackTrace(); } try { bis.close(); fis.close(); os.close(); } catch (IOException e) { e.printStackTrace(); } }

多文件壓縮下載

//多個文件,壓縮成zip后下載public void downloadMoreFile(HttpServletResponse response) {String test1= 'D:testce1.txt'; String test2= 'D:testce2.txt'; File tfile= new File(test1); File cfile= new File(test2); List<File> files = new ArrayList<>(); files.add(tfile); files.add(cfile); if (tfile.exists() && cfile.exists()) { String zipTmp = 'D:testce1.zip'; zipd(zipTmp,files,response); } }public void zipd(String zipTmp,List<File> files,HttpServletResponse response){ File zipTmpFile = new File(zipTmp); try { if (zipTmpFile.exists()) {zipTmpFile.delete(); } zipTmpFile.createNewFile(); response.reset(); // 創建文件輸出流 FileOutputStream fous = new FileOutputStream(zipTmpFile); ZipOutputStream zipOut = new ZipOutputStream(fous); zipFile(files, zipOut); zipOut.close(); fous.close(); downloadZip(zipTmpFile, response); } catch (IOException e) { e.printStackTrace(); } } //files打成壓縮包 public void zipFile(List files, ZipOutputStream outputStream) { int size = files.size(); for (int i = 0; i < size; i++) { File file = (File) files.get(i); zipFile(file, outputStream); } } public void zipFile(File inputFile, ZipOutputStream ouputStream) { try { if (inputFile.exists()) {if (inputFile.isFile()) { FileInputStream IN = new FileInputStream(inputFile); BufferedInputStream bins = new BufferedInputStream(IN, 512); ZipEntry entry = new ZipEntry(inputFile.getName()); ouputStream.putNextEntry(entry); int nNumber; byte[] buffer = new byte[512]; while ((nNumber = bins.read(buffer)) != -1) { ouputStream.write(buffer, 0, nNumber); } bins.close(); IN.close();} else { try { File[] files = inputFile.listFiles(); for (int i = 0; i < files.length; i++) { zipFile(files[i], ouputStream); } } catch (Exception e) { e.printStackTrace(); }} } } catch (Exception e) { e.printStackTrace(); } }public static HttpServletResponse downloadZip(File file, HttpServletResponse response) { if (file.exists() == false) { System.out.println('待壓縮的文件目錄:' + file + '不存在.'); } else { try {// 以流的形式下載文件。InputStream fis = new BufferedInputStream(new FileInputStream(file.getPath()));byte[] buffer = new byte[fis.available()];fis.read(buffer);fis.close();// 清空responseresponse.reset();OutputStream toClient = new BufferedOutputStream(response.getOutputStream());response.setContentType('application/octet-stream');// 如果輸出的是中文名的文件,在此處就要用URLEncoder.encode方法進行處理response.setHeader('Content-Disposition', 'attachment;filename=' + new String(file.getName().getBytes('GB2312'), 'ISO8859-1'));toClient.write(buffer);toClient.flush();toClient.close(); } catch (Exception ex) {ex.printStackTrace(); } finally {try { File f = new File(file.getPath()); f.delete();} catch (Exception e) { e.printStackTrace();} } } return response; }

到此這篇關于springboot單文件下載和多文件壓縮zip下載的實現的文章就介紹到這了,更多相關springboot文件壓縮下載內容請搜索好吧啦網以前的文章或繼續瀏覽下面的相關文章希望大家以后多多支持好吧啦網!

標簽: Spring
相關文章:
主站蜘蛛池模板: 中文字幕色在线 | 成年午夜一级毛片视频 | 亚洲成人在线视频观看 | 国产又黄又爽又色视频免费观看 | 亚洲中国日本韩国美国毛片 | 久久久亚洲欧洲日产国码二区 | 亚洲国产精品久久卡一 | 无码一区二区三区视频 | 韩国尤物主播性视频在线播放 | 黄视频在线播放 | 久久久久国产一级毛片高清版 | 亚洲综合成人网 | 久久人| 日本在线日本中文字幕日本在线视频播放 | 国产亚洲美女精品久久久久 | aaa免费毛片| 欧美在线观看黄色 | 亚洲第一黄色网 | 国产精品观看在线亚洲人成网 | 中文字幕乱 | 色欧美与xxxxx| 国产不卡毛片 | 日韩高清在线不卡 | 国产精品v欧美精品∨日韩 国产精品www | 免费的很黄很色的床小视频 | 亚洲国产精品第一区二区三区 | 亚洲色图婷婷 | 美女视频一区二区 | 亚洲国产精品第一页 | 国产一级二级三级 | 欧美一级黄色毛片 | 亚洲欧美手机在线观看 | 国产成人综合视频 | 国产女主播在线 | 黄色片免费在线观看视频 | 国产精品久久免费 | 国产精品久久久久久久久 | 免费又色又爽的视频国产 | 久草新免费 | 亚洲国产成人精品一区91 | 中文字幕亚洲欧美一区 |