這篇文章主要為大家詳細(xì)介紹了使用brotli壓縮文件和解壓縮的方法,文章還展示了示例代碼,適合剛?cè)腴T的初學(xué)者,感興趣的小伙伴們可以參考一下。
創(chuàng)新互聯(lián)專業(yè)為企業(yè)提供澤州網(wǎng)站建設(shè)、澤州做網(wǎng)站、澤州網(wǎng)站設(shè)計(jì)、澤州網(wǎng)站制作等企業(yè)網(wǎng)站建設(shè)、網(wǎng)頁設(shè)計(jì)與制作、澤州企業(yè)網(wǎng)站模板建站服務(wù),10年澤州做網(wǎng)站經(jīng)驗(yàn),不只是建網(wǎng)站,更提供有價(jià)值的思路和整體網(wǎng)絡(luò)服務(wù)。制作壓縮文件
下面我先介紹一下如何制作壓縮文件。下面的代碼和用例都來自于項(xiàng)目 packed-selenium-java-example 。
Mac 用戶
brew install brotli
Windows 用戶可以去這個(gè)界面下載,https://github.com/google/brotli/releases
打包前兩個(gè)文件大小分別為 7.5M 和 97M
╭─ ~/D/test1[? 18:15:21]
╰─ ll
total 213840
-rwxr-xr-x 1 vangie staff 7.5M 3 5 11:13 chromedriver
-rwxr-xr-x 1 vangie staff 97M 1 25 2018 headless-chromium
使用 GZip 打包并壓縮,大小為 44 M。
╭─ ~/D/test1[? 18:15:33]
╰─ tar -czvf chromedriver.tar chromedriver headless-chromium
a chromedriver
a headless-chromium
╭─ ~/D/test1[? 18:16:41]
╰─ ll
total 306216
-rwxr-xr-x 1 vangie staff 7.5M 3 5 11:13 chromedriver
-rw-r--r-- 1 vangie staff 44M 3 6 18:16 chromedriver.tar
-rwxr-xr-x 1 vangie staff 97M 1 25 2018 headless-chromium
tar 去掉 z 選項(xiàng)再打包一遍,大小為 104M
╭─ ~/D/test1[? 18:16:42]
╰─ tar -cvf chromedriver.tar chromedriver headless-chromium
a chromedriver
a headless-chromium
╭─ ~/D/test1[? 18:17:06]
╰─ ll
total 443232
-rwxr-xr-x 1 vangie staff 7.5M 3 5 11:13 chromedriver
-rw-r--r-- 1 vangie staff 104M 3 6 18:17 chromedriver.tar
-rwxr-xr-x 1 vangie staff 97M 1 25 2018 headless-chromium
壓縮后的大小為 33M,相比 Gzip 的 44M 小了不少。耗時(shí)也非常的感人 6 分 18 秒,Gzip 只要 5 秒。
╭─ ~/D/test1[? 18:17:08]
╰─ time brotli -q 11 -j -f chromedriver.tar
brotli -q 11 -j -f chromedriver.tar 375.39s user 1.66s system 99% cpu 6:18.21 total
╭─ ~/D/test1[? 18:24:23]
╰─ ll
total 281552
-rwxr-xr-x 1 vangie staff 7.5M 3 5 11:13 chromedriver
-rw-r--r-- 1 vangie staff 33M 3 6 18:17 chromedriver.tar.br
-rwxr-xr-x 1 vangie staff 97M 1 25 2018 headless-chromium
下面以 java maven 項(xiàng)目為例
org.apache.commons
commons-compress
1.18
org.brotli
dec
0.1.2
commons-compress
是 apache 提供的解壓縮工具包,對(duì)于各種壓縮算法提供一致的抽象接口,其中對(duì)于 brotli 算法只支持解壓,這里足夠了。org.brotli:dec
包是 Google 提供的 brotli 解壓算法的底層實(shí)現(xiàn)。
public class ChromeDemo implements FunctionInitializer {
public void initialize(Context context) throws IOException {
Instant start = Instant.now();
try (TarArchiveInputStream in =
new TarArchiveInputStream(
new BrotliCompressorInputStream(
new BufferedInputStream(
new FileInputStream("chromedriver.tar.br"))))) {
TarArchiveEntry entry;
while ((entry = in.getNextTarEntry()) != null) {
if (entry.isDirectory()) {
continue;
}
File file = new File("/tmp/bin", entry.getName());
File parent = file.getParentFile();
if (!parent.exists()) {
parent.mkdirs();
}
System.out.println("extract file to " + file.getAbsolutePath());
try (FileOutputStream out = new FileOutputStream(file)) {
IOUtils.copy(in, out);
}
Files.setPosixFilePermissions(file.getCanonicalFile().toPath(),
getPosixFilePermission(entry.getMode()));
}
}
Instant finish = Instant.now();
long timeElapsed = Duration.between(start, finish).toMillis();
System.out.println("Extract binary elapsed: " + timeElapsed + "ms");
}
}
實(shí)現(xiàn) FunctionInitializer
接口的 initialize
方法。解壓過程剛開始是四層嵌套流,作用分別如下:
FileInputStream
讀取文件BufferedInputStream
提供緩存,介紹系統(tǒng)調(diào)用帶來的上下文切換,提示讀取的速度BrotliCompressorInputStream
對(duì)字節(jié)流進(jìn)行解碼TarArchiveInputStream
把 tar 包里的文件逐個(gè)解出來然后 Files.setPosixFilePermissions
的作用是還原 tar 包中文件的權(quán)限。代碼太長(zhǎng)此處略去,參閱 packed-selenium-java-example
Instant start = Instant.now();
...
Instant finish = Instant.now();
long timeElapsed = Duration.between(start, finish).toMillis();
System.out.println("Extract binary elapsed: " + timeElapsed + "ms");
上面的代碼段會(huì)打印出解壓的耗時(shí),真實(shí)執(zhí)行大概在 3.7 s 左右。
最后不要忘記在 template.yml
里配置上 Initializer
和
InitializationTimeout
猜你想要:
1.智能壓縮使用 Gzip 還是 Brotli
2.Nginx啟用Brotli算法壓縮示例
以上就是brotli壓縮文件和解壓縮的使用方法,詳細(xì)使用情況還得要大家自己使用過才能知道具體要領(lǐng)。如果想閱讀更多相關(guān)內(nèi)容的文章,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!
另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)cdcxhl.cn,海內(nèi)外云服務(wù)器15元起步,三天無理由+7*72小時(shí)售后在線,公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、高防服務(wù)器、香港服務(wù)器、美國(guó)服務(wù)器、虛擬主機(jī)、免備案服務(wù)器”等云主機(jī)租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡(jiǎn)單易用、服務(wù)可用性高、性價(jià)比高”等特點(diǎn)與優(yōu)勢(shì),專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應(yīng)用場(chǎng)景需求。