List of utility methods to do String Compress
byte[] | compressToBytes(String str) compress To Bytes if (str == null) { return null; byte[] zipBytes = null; ByteArrayOutputStream byteOut = new ByteArrayOutputStream(); ZipOutputStream zipOut = null; try { zipOut = new ZipOutputStream(byteOut); ... |