Java實現文件壓縮為zip和解壓zip壓縮包

壓縮成.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的資料請關註WalkonNet其它相關文章!

推薦閱讀: