這篇文章主要為大家展示了“如何使用java實(shí)現(xiàn)一次性壓縮多個(gè)文件到zip中”,內(nèi)容簡(jiǎn)而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領(lǐng)大家一起研究并學(xué)習(xí)一下“如何使用java實(shí)現(xiàn)一次性壓縮多個(gè)文件到zip中”這篇文章吧。
成都創(chuàng)新互聯(lián)主要從事做網(wǎng)站、網(wǎng)站設(shè)計(jì)、網(wǎng)頁設(shè)計(jì)、企業(yè)做網(wǎng)站、公司建網(wǎng)站等業(yè)務(wù)。立足成都服務(wù)象州,10余年網(wǎng)站建設(shè)經(jīng)驗(yàn),價(jià)格優(yōu)惠、服務(wù)專業(yè),歡迎來電咨詢建站服務(wù):18980820575
具體如下:
1.需要引入包:
import java.io.File;import java.io.FileInputStream;import java.io.FileOutputStream;import java.io.IOException;import java.util.ArrayList;import java.util.List;import java.util.zip.ZipEntry;import java.util.zip.ZipOutputStream;import org.springframework.util.StringUtils;
2.代碼
/*** @Title: compress* @Description: TODO* @param filePaths 需要壓縮的文件地址列表(絕對(duì)路徑)* @param zipFilePath 需要壓縮到哪個(gè)zip文件(無需創(chuàng)建這樣一個(gè)zip,只需要指定一個(gè)全路徑)* @param keepDirStructure 壓縮后目錄是否保持原目錄結(jié)構(gòu)* @throws IOException* @return int 壓縮成功的文件個(gè)數(shù)*/public static int compress(ListfilePaths, String zipFilePath,Boolean keepDirStructure) throws IOException{ byte[] buf = new byte[1024]; File zipFile = new File(zipFilePath); //zip文件不存在,則創(chuàng)建文件,用于壓縮 if(!zipFile.exists()) zipFile.createNewFile(); int fileCount = 0;//記錄壓縮了幾個(gè)文件? try { ZipOutputStream zos = new ZipOutputStream(new FileOutputStream(zipFile)); for(int i = 0; i < filePaths.size(); i++){ String relativePath = filePaths.get(i); if(StringUtils.isEmpty(relativePath)){ continue; } File sourceFile = new File(relativePath);//絕對(duì)路徑找到file if(sourceFile == null || !sourceFile.exists()){ continue; } FileInputStream fis = new FileInputStream(sourceFile); if(keepDirStructure!=null && keepDirStructure){ //保持目錄結(jié)構(gòu) zos.putNextEntry(new ZipEntry(relativePath)); }else{ //直接放到壓縮包的根目錄 zos.putNextEntry(new ZipEntry(sourceFile.getName())); } //System.out.println("壓縮當(dāng)前文件:"+sourceFile.getName()); int len; while((len = fis.read(buf)) > 0){ zos.write(buf, 0, len); } zos.closeEntry(); fis.close(); fileCount++; } zos.close(); //System.out.println("壓縮完成"); } catch (Exception e) { e.printStackTrace(); } return fileCount;}
3.測(cè)試
public static void main(String[] args) throws IOException { ListsourceFilePaths = new ArrayList (); sourceFilePaths.add("d:/test/C08065.jpg"); sourceFilePaths.add("d:/test/新建文件夾/C08984.jpg"); sourceFilePaths.add("d:/test/找不到我.jpg");//試一個(gè)找不到的文件 //指定打包到哪個(gè)zip(絕對(duì)路徑) String zipTempFilePath = "D:/test/test.zip"; //調(diào)用壓縮 int s = compress(sourceFilePaths, zipTempFilePath,false); System.out.println("成功壓縮"+s+"個(gè)文件");}
以上是“如何使用java實(shí)現(xiàn)一次性壓縮多個(gè)文件到zip中”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對(duì)大家有所幫助,如果還想學(xué)習(xí)更多知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!