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

溫馨提示×

溫馨提示×

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

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

java如何壓縮多個文件的方法

發布時間:2020-10-27 11:39:28 來源:億速云 閱讀:463 作者:小新 欄目:編程語言

這篇文章主要介紹java如何壓縮多個文件的方法,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!

首先創建一個工具類,定義好接口,這里的參數
1:fileList:多個文件的path+name
2: zipFileName:壓縮后的文件名

下面是代碼,注釋已經很詳細了

public class ZIPUtil {
    
    public static String createZipFile(ArrayList<String> fileList, String zipFileName) {

        if(fileList == null || fileList.size() == 0 || CommonUtil.isEmpty(zipFileName)){
            return null;
        }
        
        //構建壓縮文件File
        File zipFile = new File(zipFileName);
        //初期化ZIP流
        ZipOutputStream out = null;

        try{
            //構建ZIP流對象
            out = new ZipOutputStream(new FileOutputStream(zipFile));
            //循環處理傳過來的集合
            for(int i = 0; i < fileList.size(); i++){
                //獲取目標文件
                File inFile = new File(fileList.get(i));
                if(inFile.exists()){
                     //定義ZipEntry對象
                     ZipEntry entry = new ZipEntry(inFile.getName());
                     //賦予ZIP流對象屬性
                     out.putNextEntry(entry);
                     int len = 0 ;
                     //緩沖
                     byte[] buffer = new byte[1024];
                     //構建FileInputStream流對象
                     FileInputStream fis;
                     fis = new FileInputStream(inFile);
                     while ((len = fis.read(buffer)) > 0) {
                         out.write(buffer, 0, len);
                         out.flush();
                     }
                     //關閉closeEntry
                     out.closeEntry();
                     //關閉FileInputStream
                     fis.close();
                }
            }
        }catch (IOException e) {
            e.printStackTrace();
        }finally{
             try {
                 //最后關閉ZIP流
                 out.close();
             } catch (IOException e) {
                 e.printStackTrace();
             }
        }


        return zipFileName;

    }
}

以上是java如何壓縮多個文件的方法的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

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

AI

洪湖市| 博兴县| 巴青县| 宜兴市| 武威市| 仁寿县| 即墨市| 绥中县| 云林县| 思茅市| 平湖市| 云阳县| 阿巴嘎旗| 西充县| 兰考县| 长武县| 如东县| 台山市| 合江县| 九寨沟县| 普安县| 金昌市| 岳西县| 荥阳市| 滕州市| 全南县| 鸡东县| 营口市| 裕民县| 夏河县| 丹巴县| 云阳县| 凤台县| 宜兰市| 六安市| 鄂托克旗| 积石山| 山阳县| 南丹县| 康平县| 万盛区|