java zip壓縮與解壓-支持空目錄,保留文件修改時間
java zip壓縮與解壓-支持空目錄,保留文件修改時間。
依賴于commons-io,commons-compress
</div>
依賴于commons-io,commons-compress
[Java]代碼
import java.io.BufferedInputStream; import java.io.BufferedOutputStream; import java.io.File; import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.FileOutputStream; import java.io.IOException; import java.io.InputStream; import java.io.OutputStream; import org.apache.commons.compress.archivers.zip.ZipArchiveEntry; import org.apache.commons.compress.archivers.zip.ZipArchiveInputStream; import org.apache.commons.compress.archivers.zip.ZipArchiveOutputStream; import org.apache.commons.io.IOUtils; public class ZipFileUtil { /** * 把一個目錄打包到一個指定的zip文件中 * * @param dirpath * 目錄路徑 * @param zipPath * zip文件路徑 */ public static void compressFoldToZip(String dirpath, String zipPath) { compressFoldToZip(dirpath,zipPath,""); } /** * 把一個目錄打包到一個指定的zip文件中 * @param dirpath * @param zipPath * @param entryPath 壓縮內文件邏輯路徑。如static/ */ public static void compressFoldToZip(String dirpath, String zipPath,String entryPath){ if(!entryPath.endsWith(File.separator)&&StringUtil.checkNotEmpty(entryPath)){ entryPath+=File.separator; } ZipArchiveOutputStream out = null; try { out = new ZipArchiveOutputStream(new BufferedOutputStream(new FileOutputStream(new File(zipPath)))); out.setEncoding("UTF-8"); compressFoldToZip(out, dirpath, entryPath); } catch (FileNotFoundException e) { // TODO Auto-generated catch block e.printStackTrace(); } finally { IOUtils.closeQuietly(out); } } /** * 把一個目錄打包到一個指定的zip文件中 * * @param out * @param dirpath * 目錄路徑 * @param entryPath * zip中文件的邏輯路徑 */ private static void compressFoldToZip(ZipArchiveOutputStream out, String dirpath, String entryPath) { InputStream ins = null; File dir = new File(dirpath); File[] files = dir.listFiles(); if (files == null || files.length < 1) { return; } try { for (int i = 0; i < files.length; i++) { // 判斷此文件是否是一個文件夾 if (files[i].isDirectory()) { if(files[i].listFiles().length>0){ compressFoldToZip(out, files[i].getAbsolutePath(), entryPath + files[i].getName() + File.separator); }else{ addFileToZip(files[i], out, entryPath); } } else { addFileToZip(files[i], out, entryPath); } } out.flush(); } catch (FileNotFoundException e) { e.printStackTrace(); } catch (IOException e) { e.printStackTrace(); } finally { IOUtils.closeQuietly(ins); } } private static void addFileToZip(File file, ZipArchiveOutputStream out, String entryPath) { InputStream ins = null; try { String path=entryPath + file.getName(); if(file.isDirectory()){ path=formatDirPath(path); //為了在壓縮文件中包含空文件夾 } ZipArchiveEntry entry = new ZipArchiveEntry(path); entry.setTime(file.lastModified()); // entry.setSize(files[i].length()); out.putArchiveEntry(entry); if(!file.isDirectory()){ ins = new BufferedInputStream(new FileInputStream(file.getAbsolutePath())); IOUtils.copy(ins, out); } out.closeArchiveEntry(); } catch (IOException e) { e.printStackTrace(); } finally { IOUtils.closeQuietly(ins); } } /** * 解壓zip文件到指定目錄 * * @param zipPath * @param destDir */ public static void unZipToFold(String zipPath, String destDir) { ZipArchiveInputStream ins = null; OutputStream os = null; File zip = new File(zipPath); if (!zip.exists()) { return; } File dest = new File(destDir); if (!dest.exists()) { dest.mkdirs(); } destDir=formatDirPath(destDir); try { ins = new ZipArchiveInputStream(new BufferedInputStream(new FileInputStream(zipPath)), "UTF-8"); ZipArchiveEntry entry = null; while ((entry = ins.getNextZipEntry()) != null) { if (entry.isDirectory()) { File directory = new File(destDir, entry.getName()); directory.mkdirs(); directory.setLastModified(entry.getTime()); } else { String absPath=formatPath(destDir+entry.getName()); mkdirsForFile(absPath); File tmpFile=new File(absPath); os=new BufferedOutputStream(new FileOutputStream(tmpFile)); IOUtils.copy(ins, os); IOUtils.closeQuietly(os); tmpFile.setLastModified(entry.getTime()); } } } catch (FileNotFoundException e) { // TODO Auto-generated catch block e.printStackTrace(); } catch (IOException e) { // TODO Auto-generated catch block e.printStackTrace(); } finally { IOUtils.closeQuietly(ins); } } private static String formatPath(String path){ path=path.replace('\\', File.separatorChar); path=path.replace('/', File.separatorChar); return path; } private static String formatDirPath(String dir){ if(!dir.endsWith(File.separator)){ dir+=File.separator; } return dir; } private static void mkdirsForFile(String filePath){ String absPath=filePath; String tmpPath=absPath.substring(0,absPath.lastIndexOf(File.separator)); File tmp=new File(tmpPath); if(!tmp.exists()){ tmp.mkdirs(); } } public static void main(String[] args) { compressFoldToZip("D:\\new2\\feiq", "D:\\zip\\my.zip"); // unZipToFold("D:\\zip\\my.zip", "D:\\zip\\unzip"); } }
本文由用戶 TerriMabry 自行上傳分享,僅供網友學習交流。所有權歸原作者,若您的權利被侵害,請聯系管理員。
轉載本站原創文章,請注明出處,并保留原始鏈接、圖片水印。
本站是一個以用戶分享為主的開源技術平臺,歡迎各類分享!