Here you can find the source of zipByte(byte[] data)
public static byte[] zipByte(byte[] data)
//package com.java2s; //License from project: Apache License import java.io.ByteArrayOutputStream; import java.io.IOException; import java.util.zip.Deflater; public class Main { private final static int CacheSize = 1024; public static byte[] zipByte(byte[] data) { Deflater compresser = new Deflater(); compresser.reset();//ww w . j ava 2 s . c om compresser.setInput(data); compresser.finish(); byte result[] = new byte[0]; ByteArrayOutputStream o = new ByteArrayOutputStream(1); try { byte[] buf = new byte[CacheSize]; int got = 0; while (!compresser.finished()) { got = compresser.deflate(buf); o.write(buf, 0, got); } result = o.toByteArray(); } catch (Exception e) { e.printStackTrace(); } finally { try { o.close(); } catch (IOException e) { e.printStackTrace(); } compresser.end(); } return result; } }