摘要:前言利用原生類和的實現的壓縮打包依賴格式讀入需要下載的文件的內容,打包到文件打包設置壓縮文件里的文件名打包打包
前言
利用Java原生類和apache的commons實現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; // 讀入需要下載的文件的內容,打包到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(); //設置壓縮文件里的文件名 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(); }
文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。
轉載請注明本文地址:http://specialneedsforspecialkids.com/yun/65086.html
摘要:分塊傳輸編碼分塊傳輸編碼是超文本傳輸協議中的一種數據傳輸機制,允許由網頁服務器發送給客戶端應用通常是網頁瀏覽器的數據可以分成多個部分。分塊傳輸編碼只在協議版本中提供。 實習中的一個主要工作就是分析 HTTP 中的協議,自己也用 Python 寫過正則表達式對 HTTP 請求和響應的內容進行匹配,然后把關鍵字段抽離出來放到一個字典中以備使用(可以稍微改造一下就是一個爬蟲工具)。 HTTP...
摘要:一些理論知識先說一下算法吧,是壓縮文件的默認算法,其實現在不光用在文件中在等其他的壓縮文件中都用,實際上只是一種壓縮數據流的算法,任何需要流式壓縮的地方都可以用。也就是說格式格式,是文件格式,是這些文件格式使用的壓縮算法。 一些理論知識 先說一下deflate算法吧,deflate是zip壓縮文件的默認算法, 其實deflate現在不光用在zip文件中, 在7z, xz等其他的壓縮文件...
摘要:騰訊特約作者微信客戶端高級工程師微信中的資源混淆工具主要為了混淆資源長度例如將混淆為,同時利用深度壓縮,大大減少了安裝包體積,同時也增加了逼格,提升了反破解難度。寫在前言資源混淆工具大約是在年月實現,并在微信中使用,減少了大約的空間。 騰訊Bugly特約作者: 微信客戶端高級工程師 shwen 微信中的資源混淆工具主要為了混淆資源ID長度(例如將res/drawable/welcome...
閱讀 2884·2023-04-26 00:26
閱讀 3488·2023-04-25 14:30
閱讀 3383·2021-10-09 09:44
閱讀 3675·2021-09-28 09:35
閱讀 1844·2021-09-22 16:02
閱讀 1247·2021-09-03 10:30
閱讀 3221·2019-08-30 15:53
閱讀 2156·2019-08-30 14:07