這篇文章帶給大家的內容是關於java壓縮多個文件的方法介紹(程式碼範例),有一定的參考價值,有需要的朋友可以參考一下,希望對你有幫助。
先建立一個工具類,定義好接口,這裡的參數
1:fileList:多個檔案的path name
2: zipFileName:壓縮後的檔案名稱
#下面是程式碼,註解已經很詳細了
public class ZIPUtil { public static String createZipFile(ArrayList<String> fileList, String zipFileName) { if(fileList == null || fileList.size() == 0 || CommonUtil.isEmpty(zipFileName)){ return null; } //构建压缩文件File File zipFile = new File(zipFileName); //初期化ZIP流 ZipOutputStream out = null; try{ //构建ZIP流对象 out = new ZipOutputStream(new FileOutputStream(zipFile)); //循环处理传过来的集合 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]; //构建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壓縮多個檔案的方法介紹(程式碼範例)的詳細內容。更多資訊請關注PHP中文網其他相關文章!