Created
September 1, 2016 13:20
-
-
Save dejanstojanovic/ab3d041b0a08fc9e4bacf36eaf077a26 to your computer and use it in GitHub Desktop.
Java gzip compress/decompress string
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.io.BufferedReader; | |
import java.io.ByteArrayInputStream; | |
import java.io.ByteArrayOutputStream; | |
import java.io.IOException; | |
import java.io.InputStreamReader; | |
import java.util.zip.GZIPInputStream; | |
import java.util.zip.GZIPOutputStream; | |
public class Gzip { | |
public static byte[] compress(String data) throws IOException { | |
ByteArrayOutputStream bos = new ByteArrayOutputStream(data.length()); | |
GZIPOutputStream gzip = new GZIPOutputStream(bos); | |
gzip.write(data.getBytes()); | |
gzip.close(); | |
byte[] compressed = bos.toByteArray(); | |
bos.close(); | |
return compressed; | |
} | |
public static String decompress(byte[] compressed) throws IOException { | |
ByteArrayInputStream bis = new ByteArrayInputStream(compressed); | |
GZIPInputStream gis = new GZIPInputStream(bis); | |
BufferedReader br = new BufferedReader(new InputStreamReader(gis, "UTF-8")); | |
StringBuilder sb = new StringBuilder(); | |
String line; | |
while((line = br.readLine()) != null) { | |
sb.append(line); | |
} | |
br.close(); | |
gis.close(); | |
bis.close(); | |
return sb.toString(); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment