在Android开发中,网络传输的数据如果采用压缩的方式,能大大减少网络流量,对文本的数据效果更明显。
一.gzip压缩
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
public static byte[] gzipCompress(final byte[] data) {
if (0 == data.length){
return KEmptyByteArray;
}
byte[] pBuf = KEmptyByteArray;
try {
ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream();
GZIPOutputStream gzip = new GZIPOutputStream(byteArrayOutputStream);
gzip.write(data);
gzip.close();
pBuf = byteArrayOutputStream.toByteArray();
byteArrayOutputStream.close();
} catch (IOException e) {
e.printStackTrace();
}
return pBuf;
}
|
二. gzip解压
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
public static byte[] gzipUncompress(final byte[] data) {
byte[] pBuf = KEmptyByteArray;
if (data.length > 0) {
ByteArrayInputStream byteArrayInputStream = new ByteArrayInputStream(data);
final ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream();
GZIPInputStream gzipInputStream = null;
try {
gzipInputStream = new GZIPInputStream(byteArrayInputStream);
int byteCount = 0;
while (byteCount >= 0) {
byteCount = gzipInputStream.read(KGZipUncompressBuffer);
if(byteCount>0){
byteArrayOutputStream.write(KGZipUncompressBuffer, 0, byteCount);
}
}
pBuf = byteArrayOutputStream.toByteArray();
}catch(IOException e){
Log.w("gzip uncompressed fail", e.getMessage());
}
finally {
try {
if (null !=byteArrayInputStream){
byteArrayInputStream.close();
}
if (null != byteArrayOutputStream){
byteArrayOutputStream.close();
}
if (null != gzipInputStream){
gzipInputStream.close();
}
}
catch (IOException e){
Log.w("gzip", e.getMessage());
}
}
}
return pBuf;
}
|
三.gzip数据的判断
1
2
3
4
5
6
7
8
9
10
11
|
//判断一个数据流是否是GZip
public static boolean isGZipData(final byte[] data){
if (data.length > 2
&& data[0] == KYKGZipHeaderFirstByte
&& data[1] == KYKGZipHeaderSecondByte){
return true;
}
return false;
}
|
四.说明
1.KGZipUncompressBufferKGZipUncompressBuffer是一固定大小的内存缓冲区,减少内存的频繁创建与过大内存的分配。
文章作者
梵梵爸
上次更新
2015-08-19
许可协议
原创文章,如需转载请注明文章作者和出处。谢谢