Here you can find the source of zipString(String str)
public static String zipString(String str) throws IOException
//package com.java2s; //License from project: Open Source License import java.io.ByteArrayOutputStream; import java.io.IOException; import java.util.zip.GZIPOutputStream; public class Main { public static String zipString(String str) throws IOException { if (str == null || str.length() == 0) { return str; }//www . j a v a2 s.co m ByteArrayOutputStream out = new ByteArrayOutputStream(); GZIPOutputStream gzip = new GZIPOutputStream(out); gzip.write(str.getBytes()); gzip.close(); return out.toString("ISO-8859-1"); } }