摘要:前言利用原生類和的實(shí)現(xiàn)的壓縮打包依賴格式讀入需要下載的文件的內(nèi)容,打包到文件打包設(shè)置壓縮文件里的文件名打包打包
前言
利用Java原生類和apache的commons實(shí)現(xiàn)zip,gzip,7z,zlib的壓縮打包
maven依賴
org.apache.commons commons-compress 1.12
zip格式
public static void zip(String input, String output, String name) throws Exception { ZipOutputStream out = new ZipOutputStream(new FileOutputStream(output)); String[] paths = input.split("|"); File[] files = new File[paths.length]; byte[] buffer = new byte[1024]; for (int i = 0; i < paths.length; i++) { files[i] = new File(paths[i]); } for (int i = 0; i < files.length; i++) { FileInputStream fis = new FileInputStream(files[i]); if (files.length == 1 && name != null) { out.putNextEntry(new ZipEntry(name)); } else { out.putNextEntry(new ZipEntry(files[i].getName())); } int len; // 讀入需要下載的文件的內(nèi)容,打包到zip文件 while ((len = fis.read(buffer)) > 0) { out.write(buffer, 0, len); } out.closeEntry(); fis.close(); } out.close(); }
gzip打包
public static void gzip(String input, String output, String name) throws Exception { String compress_name = null; if (name != null) { compress_name = name; } else { compress_name = new File(input).getName(); } byte[] buffer = new byte[1024]; try { GzipParameters gp = new GzipParameters(); //設(shè)置壓縮文件里的文件名 gp.setFilename(compress_name); GzipCompressorOutputStream gcos = new GzipCompressorOutputStream(new FileOutputStream(output), gp); FileInputStream fis = new FileInputStream(input); int length; while ((length = fis.read(buffer)) > 0) { gcos.write(buffer, 0, length); } fis.close(); gcos.finish(); } catch (IOException ioe) { ioe.printStackTrace(); } }
7z打包
public static void z7z(String input, String output, String name) throws Exception { try { SevenZOutputFile sevenZOutput = new SevenZOutputFile(new File(output)); SevenZArchiveEntry entry = null; String[] paths = input.split("|"); File[] files = new File[paths.length]; for (int i = 0; i < paths.length; i++) { files[i] = new File(paths[i].trim()); } for (int i = 0; i < files.length; i++) { BufferedInputStream instream = null; instream = new BufferedInputStream(new FileInputStream(paths[i])); if (name != null) { entry = sevenZOutput.createArchiveEntry(new File(paths[i]), name); } else { entry = sevenZOutput.createArchiveEntry(new File(paths[i]), new File(paths[i]).getName()); } sevenZOutput.putArchiveEntry(entry); byte[] buffer = new byte[1024]; int len; while ((len = instream.read(buffer)) > 0) { sevenZOutput.write(buffer, 0, len); } instream.close(); sevenZOutput.closeArchiveEntry(); } sevenZOutput.close(); } catch (IOException ioe) { System.out.println(ioe.toString() + " " + input); } }
zlib打包
public static void zlib(String input, String output) throws Exception { // DeflaterOutputStream dos = new DeflaterOutputStream(new FileOutputStream(output)); DeflateParameters dp = new DeflateParameters(); dp.setWithZlibHeader(true); DeflateCompressorOutputStream dcos = new DeflateCompressorOutputStream(new FileOutputStream(output),dp); FileInputStream fis = new FileInputStream(input); int length = (int) new File(input).length(); byte data[] = new byte[length]; // int length; while ((length = fis.read(data)) > 0) { dcos.write(data, 0, length); } fis.close(); dcos.finish(); dcos.close(); }
文章版權(quán)歸作者所有,未經(jīng)允許請(qǐng)勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。
轉(zhuǎn)載請(qǐng)注明本文地址:http://systransis.cn/yun/65086.html
摘要:分塊傳輸編碼分塊傳輸編碼是超文本傳輸協(xié)議中的一種數(shù)據(jù)傳輸機(jī)制,允許由網(wǎng)頁服務(wù)器發(fā)送給客戶端應(yīng)用通常是網(wǎng)頁瀏覽器的數(shù)據(jù)可以分成多個(gè)部分。分塊傳輸編碼只在協(xié)議版本中提供。 實(shí)習(xí)中的一個(gè)主要工作就是分析 HTTP 中的協(xié)議,自己也用 Python 寫過正則表達(dá)式對(duì) HTTP 請(qǐng)求和響應(yīng)的內(nèi)容進(jìn)行匹配,然后把關(guān)鍵字段抽離出來放到一個(gè)字典中以備使用(可以稍微改造一下就是一個(gè)爬蟲工具)。 HTTP...
摘要:一些理論知識(shí)先說一下算法吧,是壓縮文件的默認(rèn)算法,其實(shí)現(xiàn)在不光用在文件中在等其他的壓縮文件中都用,實(shí)際上只是一種壓縮數(shù)據(jù)流的算法,任何需要流式壓縮的地方都可以用。也就是說格式格式,是文件格式,是這些文件格式使用的壓縮算法。 一些理論知識(shí) 先說一下deflate算法吧,deflate是zip壓縮文件的默認(rèn)算法, 其實(shí)deflate現(xiàn)在不光用在zip文件中, 在7z, xz等其他的壓縮文件...
摘要:騰訊特約作者微信客戶端高級(jí)工程師微信中的資源混淆工具主要為了混淆資源長度例如將混淆為,同時(shí)利用深度壓縮,大大減少了安裝包體積,同時(shí)也增加了逼格,提升了反破解難度。寫在前言資源混淆工具大約是在年月實(shí)現(xiàn),并在微信中使用,減少了大約的空間。 騰訊Bugly特約作者: 微信客戶端高級(jí)工程師 shwen 微信中的資源混淆工具主要為了混淆資源ID長度(例如將res/drawable/welcome...
閱讀 2893·2023-04-26 00:26
閱讀 3501·2023-04-25 14:30
閱讀 3394·2021-10-09 09:44
閱讀 3687·2021-09-28 09:35
閱讀 1868·2021-09-22 16:02
閱讀 1259·2021-09-03 10:30
閱讀 3231·2019-08-30 15:53
閱讀 2165·2019-08-30 14:07