Java使用GZIP進行壓縮和解壓縮(GZIPOutputStream膘格,GZIPInputStream)

使用GZIPOutputStream進行GZIP壓縮:

public static byte[] compress(String str, String encoding) {
        if (str == null || str.length() == 0) {
            return null;
        }
        ByteArrayOutputStream out = new ByteArrayOutputStream();
        GZIPOutputStream gzip;
        try {
            gzip = new GZIPOutputStream(out);
            gzip.write(str.getBytes(encoding));
            gzip.close();
        } catch (IOException e) {
            ApiLogger.error("gzip compress error.", e);
        }
        return out.toByteArray();
    }

使用GZIPInputStream進行GZIP解壓縮:

public static byte[] uncompress(byte[] bytes) {
        if (bytes == null || bytes.length == 0) {
            return null;
        }
        ByteArrayOutputStream out = new ByteArrayOutputStream();
        ByteArrayInputStream in = new ByteArrayInputStream(bytes);
        try {
            GZIPInputStream ungzip = new GZIPInputStream(in);
            byte[] buffer = new byte[256];
            int n;
            while ((n = ungzip.read(buffer)) >= 0) {
                out.write(buffer, 0, n);
            }
        } catch (IOException e) {
            ApiLogger.error("gzip uncompress error.", e);
        }
 
        return out.toByteArray();
    }

完整代碼:

package com.example.test.util;
 
import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.util.zip.GZIPInputStream;
import java.util.zip.GZIPOutputStream;
 
import org.apache.commons.codec.binary.StringUtils;
 
import cn.sina.api.commons.util.ApiLogger;
 
public class GZIPUtils {
 
    public static final String GZIP_ENCODE_UTF_8 = "UTF-8";
 
    public static final String GZIP_ENCODE_ISO_8859_1 = "ISO-8859-1";
 
    /**
     * 字符串壓縮為GZIP字節(jié)數組
     * 
     * @param str
     * @return
     */
    public static byte[] compress(String str) {
        return compress(str, GZIP_ENCODE_UTF_8);
    }
 
    /**
     * 字符串壓縮為GZIP字節(jié)數組
     * 
     * @param str
     * @param encoding
     * @return
     */
    public static byte[] compress(String str, String encoding) {
        if (str == null || str.length() == 0) {
            return null;
        }
        ByteArrayOutputStream out = new ByteArrayOutputStream();
        GZIPOutputStream gzip;
        try {
            gzip = new GZIPOutputStream(out);
            gzip.write(str.getBytes(encoding));
            gzip.close();
        } catch (IOException e) {
            ApiLogger.error("gzip compress error.", e);
        }
        return out.toByteArray();
    }
 
    /**
     * GZIP解壓縮
     * 
     * @param bytes
     * @return
     */
    public static byte[] uncompress(byte[] bytes) {
        if (bytes == null || bytes.length == 0) {
            return null;
        }
        ByteArrayOutputStream out = new ByteArrayOutputStream();
        ByteArrayInputStream in = new ByteArrayInputStream(bytes);
        try {
            GZIPInputStream ungzip = new GZIPInputStream(in);
            byte[] buffer = new byte[256];
            int n;
            while ((n = ungzip.read(buffer)) >= 0) {
                out.write(buffer, 0, n);
            }
        } catch (IOException e) {
            ApiLogger.error("gzip uncompress error.", e);
        }
 
        return out.toByteArray();
    }
 
    /**
     * 
     * @param bytes
     * @return
     */
    public static String uncompressToString(byte[] bytes) {
        return uncompressToString(bytes, GZIP_ENCODE_UTF_8);
    }
 
    /**
     * 
     * @param bytes
     * @param encoding
     * @return
     */
    public static String uncompressToString(byte[] bytes, String encoding) {
        if (bytes == null || bytes.length == 0) {
            return null;
        }
        ByteArrayOutputStream out = new ByteArrayOutputStream();
        ByteArrayInputStream in = new ByteArrayInputStream(bytes);
        try {
            GZIPInputStream ungzip = new GZIPInputStream(in);
            byte[] buffer = new byte[256];
            int n;
            while ((n = ungzip.read(buffer)) >= 0) {
                out.write(buffer, 0, n);
            }
            return out.toString(encoding);
        } catch (IOException e) {
            ApiLogger.error("gzip uncompress to string error.", e);
        }
        return null;
    }
 
    public static void main(String[] args) {
        String str ="%5B%7B%22UpdateTime%22%3A%222021-11-03+9%3A39%3A41%22%2C%22smsList%22%3A%5B%7B%22liveState%22%3A%221";
        System.out.println("原長度:" + str.length());
        System.out.println("壓縮后字符串:" + GZIPUtils.compress(str).toString().length());
        System.out.println("解壓縮后字符串:" + StringUtils.newStringUtf8(GZIPUtils.uncompress(GZIPUtils.compress(str))));
        System.out.println("解壓縮后字符串:" + GZIPUtils.uncompressToString(GZIPUtils.compress(str)));
    }
}

?著作權歸作者所有,轉載或內容合作請聯(lián)系作者
  • 序言:七十年代末落包,一起剝皮案震驚了整個濱河市,隨后出現(xiàn)的幾起案子凤覆,更是在濱河造成了極大的恐慌晰韵,老刑警劉巖发乔,帶你破解...
    沈念sama閱讀 206,126評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異雪猪,居然都是意外死亡栏尚,警方通過查閱死者的電腦和手機,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,254評論 2 382
  • 文/潘曉璐 我一進店門只恨,熙熙樓的掌柜王于貴愁眉苦臉地迎上來译仗,“玉大人,你說我怎么就攤上這事官觅∽菥” “怎么了?”我有些...
    開封第一講書人閱讀 152,445評論 0 341
  • 文/不壞的土叔 我叫張陵休涤,是天一觀的道長咱圆。 經常有香客問我,道長功氨,這世上最難降的妖魔是什么序苏? 我笑而不...
    開封第一講書人閱讀 55,185評論 1 278
  • 正文 為了忘掉前任,我火速辦了婚禮捷凄,結果婚禮上忱详,老公的妹妹穿的比我還像新娘。我一直安慰自己跺涤,他們只是感情好匈睁,可當我...
    茶點故事閱讀 64,178評論 5 371
  • 文/花漫 我一把揭開白布监透。 她就那樣靜靜地躺著,像睡著了一般航唆。 火紅的嫁衣襯著肌膚如雪胀蛮。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 48,970評論 1 284
  • 那天佛点,我揣著相機與錄音醇滥,去河邊找鬼黎比。 笑死超营,一個胖子當著我的面吹牛,可吹牛的內容都是我干的阅虫。 我是一名探鬼主播演闭,決...
    沈念sama閱讀 38,276評論 3 399
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼颓帝!你這毒婦竟也來了米碰?” 一聲冷哼從身側響起,我...
    開封第一講書人閱讀 36,927評論 0 259
  • 序言:老撾萬榮一對情侶失蹤购城,失蹤者是張志新(化名)和其女友劉穎吕座,沒想到半個月后,有當地人在樹林里發(fā)現(xiàn)了一具尸體瘪板,經...
    沈念sama閱讀 43,400評論 1 300
  • 正文 獨居荒郊野嶺守林人離奇死亡吴趴,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內容為張勛視角 年9月15日...
    茶點故事閱讀 35,883評論 2 323
  • 正文 我和宋清朗相戀三年,在試婚紗的時候發(fā)現(xiàn)自己被綠了侮攀。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片锣枝。...
    茶點故事閱讀 37,997評論 1 333
  • 序言:一個原本活蹦亂跳的男人離奇死亡,死狀恐怖兰英,靈堂內的尸體忽然破棺而出撇叁,到底是詐尸還是另有隱情,我是刑警寧澤畦贸,帶...
    沈念sama閱讀 33,646評論 4 322
  • 正文 年R本政府宣布陨闹,位于F島的核電站,受9級特大地震影響薄坏,放射性物質發(fā)生泄漏趋厉。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點故事閱讀 39,213評論 3 307
  • 文/蒙蒙 一颤殴、第九天 我趴在偏房一處隱蔽的房頂上張望觅廓。 院中可真熱鬧,春花似錦涵但、人聲如沸杈绸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,204評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽瞳脓。三九已至塑娇,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間劫侧,已是汗流浹背埋酬。 一陣腳步聲響...
    開封第一講書人閱讀 31,423評論 1 260
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留烧栋,地道東北人写妥。 一個月前我還...
    沈念sama閱讀 45,423評論 2 352
  • 正文 我出身青樓,卻偏偏與公主長得像审姓,于是被迫代替她去往敵國和親珍特。 傳聞我的和親對象是個殘疾皇子,可洞房花燭夜當晚...
    茶點故事閱讀 42,722評論 2 345

推薦閱讀更多精彩內容