Gzip压缩解压
package com.dadi01.scrm.foundation.utils.gzip;
import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.util.zip.GZIPInputStream;
import java.util.zip.GZIPOutputStream;
/**
* @author lviter
*/
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字节数组
*
* @param str
* @return
*/
public static byte[] compress(String str) {
return compress(str, GZIP_ENCODE_UTF_8);
}
/**
* 字符串压缩为GZIP字节数组
*
* @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) {
e.printStackTrace();
}
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) {
e.printStackTrace();
}
return out.toByteArray();
}
/**
* 解压并返回String
*
* @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) {
e.printStackTrace();
}
return null;
}
public static void main(String[] args) {
byte[] bytes = {31, -117, 8, 0, 0, 0, 0, 0, 0, 0, -85, 86, 74, 45, 75, -51, 43, 9, 72, 44, 74, -52, -11, 78, -83, 84, -78, 82, 42, 74, 77, -49, 44, 46, 73, 45, -118, 47, -50, 47, 45, 74, 78, 85, -46, 81, -54, 44, 46, 115, -55, -52, 77, -51, 43, -50, -52, -49, 43, 6, -85, 116, 9, -15, 15, 86, -78, -118, -82, 86, 42, 64, -24, -125, 40, -113, 47, -81, 0, -22, 0, 11, -121, 37, -26, -108, -90, 34, 75, 24, 2, 101, -14, 18, 115, 65, 98, 79, -9, -83, 123, -78, 127, -31, -45, -99, -101, -97, -10, 111, 80, -86, -115, -83, 5, 0, 60, 103, -54, -125, -121, 0, 0, 0};
System.out.println(uncompressToString(bytes));
}
}
来源:oschina
链接:https://my.oschina.net/lviter/blog/4815811