Android GZip String compress(String str)

Here you can find the source of compress(String str)

Description

compress

License

Open Source License

Declaration

public static String compress(String str) throws IOException 

Method Source Code

//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 compress(String str) throws IOException {
        if (str == null || str.length() == 0) {
            return str;
        }//www . j  a va2  s. co m
        ByteArrayOutputStream out = new ByteArrayOutputStream();
        GZIPOutputStream gzip = new GZIPOutputStream(out);
        gzip.write(str.getBytes());
        gzip.close();
        return out.toString("ISO-8859-1");
    }
}

Related

  1. uncompress(String str)