91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何在JavaWeb項目中實現文件壓縮下載功能

發布時間:2020-11-27 17:28:03 來源:億速云 閱讀:248 作者:Leah 欄目:編程語言

本篇文章為大家展示了如何在JavaWeb項目中實現文件壓縮下載功能,內容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細介紹希望你能有所收獲。

具體代碼如下所示:

//文件名稱
    String[] names={"one.jpg","two.jpg","three.jpg","four.jpg"};
    //四個文件流
    FileInputStream input1 = new FileInputStream(new File("文件路徑"));
    FileInputStream input2 = new FileInputStream(new File("文件路徑"));
    FileInputStream input3 = new FileInputStream(new File("文件路徑"));
    FileInputStream input4 = new FileInputStream(new File("文件路徑"));
    FileInputStream[] inputs={input1,input2,input3,input4};
    //ZIP打包圖片
    File zipFile = new File("壓縮文件存放路徑");
    byte[] buf = new byte[1024];
    int len;
    ZipOutputStream zout=new ZipOutputStream(new FileOutputStream(zipFile));
    for (int i = 0; i < inputs.length; i++) { 
      FileInputStream in =inputs[i]; 
      zout.putNextEntry(new ZipEntry(names[i]));  
      while ((len = in.read(buf)) > 0) { 
        zout.write(buf, 0, len); 
      } 
      zout.closeEntry(); 
      in.close(); 
    }
    zout.close();
    //下載圖片
    FileInputStream zipInput =new FileInputStream(zipFile);
    OutputStream out = response.getOutputStream();
    response.setContentType("application/octet-stream");
    response.setHeader("Content-Disposition", "attachment; filename=images.zip");
    while ((len=zipInput.read(buf))!= -1){ 
      out.write(buf,0,len); 
    }
    zipInput.close();
    out.flush();
    out.close();
    //刪除壓縮包
    zipFile.delete();

上述內容就是如何在JavaWeb項目中實現文件壓縮下載功能,你們學到知識或技能了嗎?如果還想學到更多技能或者豐富自己的知識儲備,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

遂川县| 大洼县| 舒城县| 仪陇县| 时尚| 鄂温| 莱阳市| 肃北| 辽阳县| 浑源县| 昌都县| 新乡市| 永平县| 德惠市| 孟州市| 会泽县| 汾西县| 德州市| 从化市| 巫山县| 乌鲁木齐市| 奇台县| 伊川县| 上饶县| 绩溪县| 和林格尔县| 思南县| 金阳县| 太白县| 怀远县| 科技| 南江县| 恩平市| 阳江市| 通化县| 奇台县| 获嘉县| 博湖县| 邹平县| 武宣县| 彰化县|