亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

如何在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

枣阳市| 新密市| 乐东| 洛宁县| 色达县| 徐闻县| 睢宁县| 噶尔县| 济宁市| 南昌市| 八宿县| 拜城县| 三都| 鄂伦春自治旗| 淅川县| 大英县| 万宁市| 城固县| 潼南县| 赤水市| 江安县| 桐柏县| 额尔古纳市| 瓦房店市| 嵊州市| 满洲里市| 西盟| 孝昌县| 嘉荫县| 林周县| 桓台县| 泊头市| 星子县| 运城市| 光山县| 哈密市| 淮北市| 桂平市| 红桥区| 巢湖市| 广昌县|