溫馨提示×

溫馨提示×

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

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

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

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

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

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

下面是代碼,注釋已經(jīng)很詳細了

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

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

        try{
            //構(gòu)建ZIP流對象
            out = new ZipOutputStream(new FileOutputStream(zipFile));
            //循環(huán)處理傳過來的集合
            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];
                     //構(gòu)建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如何壓縮多個文件的方法的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對大家有幫助,更多相關知識,歡迎關注億速云行業(yè)資訊頻道!

向AI問一下細節(jié)

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

AI