首頁 > 軟體

Java實現檔案壓縮為zip和解壓zip壓縮包

2022-06-21 22:00:44

壓縮成.zip

程式碼如下:

/**
     * 壓縮成ZIP
     *
     * @param srcDir           壓縮資料夾路徑
     * @param out              壓縮檔案輸出流
     * @throws RuntimeException 壓縮失敗會丟擲執行時異常
     */

public static void toZip(String srcDir, OutputStream out) throws RuntimeException {

    long start = System.currentTimeMillis();

    ZipOutputStream zos = null;

    try {

        zos = new ZipOutputStream(out);

        File sourceFile = new File(srcDir);

        compress(sourceFile, zos, sourceFile.getName(), false);

        long end = System.currentTimeMillis();

        System.out.println("壓縮完成,耗時:" + (end - start) + " ms");

    } catch (Exception e) {

        throw new RuntimeException("zip error from ZipUtils", e);

    } finally {

        if (zos != null) {

            try {

                zos.close();

            } catch (IOException e) {

                e.printStackTrace();

            }

        }

    }
}

/**
     * 遞迴壓縮方法
     *
     * @param sourceFile       原始檔
     * @param zos              zip輸出流
     * @param name             壓縮後的名稱
     * @param KeepDirStructure 是否保留原來的目錄結構,true:保留目錄結構;
     *                         <p>
     *                         false:所有檔案跑到壓縮包根目錄下(注意:不保留目錄結構可能會出現同名檔案,會壓縮失敗)
     * @throws Exception
     */
private static void compress(File sourceFile, ZipOutputStream zos, String name,
                             boolean KeepDirStructure) throws Exception {
    byte[] buf = new byte[BUFFER_SIZE];

    if (sourceFile.isFile()) {

        // 向zip輸出流中新增一個zip實體,構造器中name為zip實體的檔案的名字

        zos.putNextEntry(new ZipEntry(name));

        // copy檔案到zip輸出流中

        int len;

        FileInputStream in = new FileInputStream(sourceFile);

        while ((len = in.read(buf)) != -1) {

            zos.write(buf, 0, len);

        }

        // Complete the entry

        zos.closeEntry();

        in.close();

    } else {

        File[] listFiles = sourceFile.listFiles();

        if (listFiles == null || listFiles.length == 0) {

            // 需要保留原來的檔案結構時,需要對空資料夾進行處理

            if (KeepDirStructure) {

                // 空資料夾的處理

                zos.putNextEntry(new ZipEntry(name + "/"));

                // 沒有檔案,不需要檔案的copy

                zos.closeEntry();
            }

        } else {

            for (File file : listFiles) {

                // 判斷是否需要保留原來的檔案結構

                if (KeepDirStructure) {

                    // 注意:file.getName()前面需要帶上父資料夾的名字加一斜槓,

                    // 不然最後壓縮包中就不能保留原來的檔案結構,即:所有檔案都跑到壓縮包根目錄下了

                    compress(file, zos, name + "/" + file.getName(), KeepDirStructure);

                } else {

                    compress(file, zos, file.getName(), KeepDirStructure);

                }


            }

        }

    }

}

測試驗證程式碼:

/**
	 * 測試打包原生的Navicat,輸出為zip檔案
	 * @throws Exception
	 */
@Test
public void test() throws Exception {
    //Navicat路徑
    String inDir = "E:\developer\Navicat";
    //打包後輸出路徑
    String outDir = "E:\developer\NavicatZip\Navicat.zip";
    OutputStream fileOutputStream = new FileOutputStream(new File(outDir));
    ZipUtils.toZip(inDir, fileOutputStream);
}

打包前後的檔案如下:

解壓.zip

程式碼如下:

/**
     * 解壓zip檔案到指定目錄
     * @param fileZip
     * @param path_to_dest
     * @throws IOException
     */
public static void readZip(String fileZip,String path_to_dest) throws IOException {

    try (FileInputStream fis = new FileInputStream(fileZip);
         ZipInputStream zis =
         new ZipInputStream(new BufferedInputStream(fis))) {

        ZipEntry entry;

        // 從ZipInputStream讀取每個條目,直到沒有
        // 發現更多條目,返回值為空
        // getNextEntry()方法。
        while ((entry = zis.getNextEntry()) != null) {
            System.out.println("Unzipping: " + entry.getName());

            int size;
            byte[] buffer = new byte[2048];
            File fileOut = new File(path_to_dest+"\"+entry.getName());
            try (FileOutputStream fos =
                 new FileOutputStream(fileOut);
                 BufferedOutputStream bos =
                 new BufferedOutputStream(fos, buffer.length)) {

                while ((size = zis.read(buffer, 0, buffer.length)) != -1) {
                    bos.write(buffer, 0, size);
                }
                bos.flush();
            }
        }
    } catch (IOException e) {
        e.printStackTrace();
    }
}

測試驗證程式碼:

/**
     * 測試解壓本地zip檔案
     * @throws Exception
     */
@Test
public void readZip() throws Exception {
    //解壓後路徑
    String path_to_dest = "E:\developer\NavicatUnzip";
    //zip檔案路徑
    String fileZip = "E:\developer\NavicatZip\Navicat.zip";
    ZipUtils.readZip(fileZip, path_to_dest);
}

解壓前後的檔案如下:

以上就是Java實現檔案壓縮為zip和解壓zip壓縮包的詳細內容,更多關於Java檔案壓縮為zip的資料請關注it145.com其它相關文章!


IT145.com E-mail:sddin#qq.com