1. 程式人生 > >字串的壓縮與解壓

字串的壓縮與解壓

import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.util.zip.GZIPInputStream;
import java.util.zip.GZIPOutputStream;



/**
* 字串的壓縮
*
* @param str
* 待壓縮的字串
* @return 返回壓縮後的字串
* @throws IOException
*/
public static String compress(String str) throws IOException {
if (null == str || str.length() <= 0) {
return str;
}
// 建立一個新的 byte 陣列輸出流
ByteArrayOutputStream out = new ByteArrayOutputStream();
// 使用預設緩衝區大小建立新的輸出流
GZIPOutputStream gzip = new GZIPOutputStream(out);
// 將 b.length 個位元組寫入此輸出流
gzip.write(str.getBytes());
gzip.close();
// 使用指定的 charsetName,通過解碼位元組將緩衝區內容轉換為字串
return Base64Coder.encoderBASE64(out.toByteArray(), true);
}

/**
* 字串的解壓
*
* @param str
* 對字串解壓
* @return 返回解壓縮後的字串
* @throws IOException
*/
public static String unCompress(String str) throws Exception {
if (null == str || str.length() <= 0) {
return str;
}
// 建立一個新的 byte 陣列輸出流
ByteArrayOutputStream out = new ByteArrayOutputStream();
// 建立一個 ByteArrayInputStream,使用 buf 作為其緩衝區陣列
ByteArrayInputStream in = new ByteArrayInputStream(Base64Coder.decodeBASE64(str));
// 使用預設緩衝區大小建立新的輸入流
GZIPInputStream gzip = new GZIPInputStream(in);
byte[] buffer = new byte[256];
int n = 0;
while ((n = gzip.read(buffer)) >= 0) {// 將未壓縮資料讀入位元組陣列
// 將指定 byte 陣列中從偏移量 off 開始的 len 個位元組寫入此 byte陣列輸出流
out.write(buffer, 0, n);
}
// 使用指定的 charsetName,通過解碼位元組將緩衝區內容轉換為字串
return out.toString("GBK");
}