国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁(yè) > 系統(tǒng) > Android > 正文

Android實(shí)現(xiàn)壓縮字符串的方法示例

2019-10-22 18:29:14
字體:
來(lái)源:轉(zhuǎn)載
供稿:網(wǎng)友

前言

Android端可以對(duì)字符串進(jìn)行壓縮,我們?cè)谶M(jìn)行大量簡(jiǎn)單文本傳輸時(shí),可以先壓縮字符串再發(fā)送。接收端接收后再解壓。也可以將字符串壓縮后存入數(shù)據(jù)庫(kù)中,下面話不多說(shuō)了,來(lái)一起看看詳細(xì)的介紹吧。

使用到的類庫(kù)

GZIPOutputStream

代碼示例

import java.io.ByteArrayInputStream;import java.io.ByteArrayOutputStream;import java.io.IOException;import java.util.zip.GZIPInputStream;import java.util.zip.GZIPOutputStream;public class StrZipUtil { /**  * @param input 需要壓縮的字符串  * @return 壓縮后的字符串  * @throws IOException IO  */ public static String compress(String input) throws IOException {  if (input == null || input.length() == 0) {   return input;  }  ByteArrayOutputStream out = new ByteArrayOutputStream();  GZIPOutputStream gzipOs = new GZIPOutputStream(out);  gzipOs.write(input.getBytes());  gzipOs.close();  return out.toString("ISO-8859-1"); } /**  * @param zippedStr 壓縮后的字符串  * @return 解壓縮后的  * @throws IOException IO  */ public static String uncompress(String zippedStr) throws IOException {  if (zippedStr == null || zippedStr.length() == 0) {   return zippedStr;  }  ByteArrayOutputStream out = new ByteArrayOutputStream();  ByteArrayInputStream in = new ByteArrayInputStream(zippedStr    .getBytes("ISO-8859-1"));  GZIPInputStream gzipIs = new GZIPInputStream(in);  byte[] buffer = new byte[256];  int n;  while ((n = gzipIs.read(buffer)) >= 0) {   out.write(buffer, 0, n);  }  // toString()使用平臺(tái)默認(rèn)編碼,也可以顯式的指定如toString("GBK")  return out.toString(); }}

紅米手機(jī)測(cè)試輸出

08-09 13:16:53.388 32248-32267/com.rustfisher.ndkproj D/rustApp: 開始存入數(shù)據(jù)庫(kù) ori1 len=30430408-09 13:16:53.418 32248-32267/com.rustfisher.ndkproj D/rustApp: 已存入數(shù)據(jù)庫(kù) ori1 len=304304 , 耗時(shí)約37 ms08-09 13:16:53.418 32248-32267/com.rustfisher.ndkproj D/rustApp: 開始?jí)嚎s ori1 len=30430408-09 13:16:53.438 32248-32267/com.rustfisher.ndkproj D/rustApp: 壓縮完畢 zip1 len=1112 , 耗時(shí)約19 ms08-09 13:16:53.438 32248-32267/com.rustfisher.ndkproj D/rustApp: 存壓縮后的數(shù)據(jù)進(jìn)數(shù)據(jù)庫(kù) zip1.length=111208-09 13:16:53.448 32248-32267/com.rustfisher.ndkproj D/rustApp: 壓縮后的數(shù)據(jù)已進(jìn)數(shù)據(jù)庫(kù) zip1.length=1112 , 耗時(shí)約8 ms08-09 13:16:53.448 32248-32267/com.rustfisher.ndkproj D/rustApp: 解壓開始08-09 13:16:53.488 32248-32267/com.rustfisher.ndkproj D/rustApp: 解壓完畢 耗時(shí)約36 ms

存儲(chǔ)時(shí)間受存儲(chǔ)字符串的長(zhǎng)度影響。字符串長(zhǎng)度與存儲(chǔ)耗時(shí)正相關(guān)。

榮耀手機(jī)測(cè)試

08-09 10:38:42.759 23075-23109/com.rustfisher D/rustApp: 開始?jí)嚎s ori1 len=30430408-09 10:38:42.764 23075-23109/com.rustfisher D/rustApp: 壓縮完畢 zip1 len=111208-09 10:38:42.764 23075-23109/com.rustfisher D/rustApp: 解壓開始08-09 10:38:42.789 23075-23109/com.rustfisher D/rustApp: 解壓完畢

此例中,榮耀壓縮耗時(shí)約5ms,解壓耗時(shí)約25ms。

可以看出,壓縮后與原長(zhǎng)度之比 1112/304304, 約0.365%

壓縮和解壓縮耗時(shí)視手機(jī)情況而定。

總結(jié)

以上就是這篇文章的全部?jī)?nèi)容了,希望本文的內(nèi)容對(duì)大家的學(xué)習(xí)或者工作能帶來(lái)一定的幫助,如果有疑問(wèn)大家可以留言交流,謝謝大家對(duì)VEVB武林網(wǎng)的支持。


注:相關(guān)教程知識(shí)閱讀請(qǐng)移步到Android開發(fā)頻道。
發(fā)表評(píng)論 共有條評(píng)論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 贞丰县| 邢台市| 屏东市| 江川县| 十堰市| 渝北区| 迭部县| 永和县| 罗城| 金塔县| 南宫市| 邵阳县| 龙井市| 获嘉县| 衡水市| 河间市| 城口县| 临泉县| 咸宁市| 景宁| 宜州市| 东光县| 宜兰县| 霞浦县| 加查县| 长宁区| 当涂县| 新巴尔虎左旗| 侯马市| 丰宁| 当阳市| 涿州市| 武隆县| 津南区| 凤山县| 专栏| 新津县| 大英县| 黄梅县| 丽水市| 长宁区|