您好,登錄后才能下訂單哦!
本篇內容介紹了“Java如何實現文件壓縮為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文件到指定目錄 * @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壓縮包”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識可以關注億速云網站,小編將為大家輸出更多高質量的實用文章!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。