文字列の圧縮と解凍

2905 ワード

最近androidの開発をしていて、socketはメッセージ情報を伝えなければなりません.メッセージ情報はjsonフォーマットがあり、データの重複度が高いので、文字列を圧縮する方法を探しました.データが大きいほど圧縮が明らかになります.
データ転送では、データの圧縮や解凍が必要になる場合があります.この例では、GZIPOutputStream/GZIPInputStreamを使用して実現します.
1、ISO-8859-1を仲介コードとして使用し、正確なデータ還元を保証できる
2、文字符号化決定時、uncompressメソッドの最後の文で符号化を明示的に指定することができる
import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.util.zip.GZIPInputStream;
import java.util.zip.GZIPOutputStream;


public class ZipUtil {
	//   
	  public static String compress(String str) throws IOException {
	    if (str == null || str.length() == 0) {
	      return str;
	    }
	    ByteArrayOutputStream out = new ByteArrayOutputStream();
	    GZIPOutputStream gzip = new GZIPOutputStream(out);
	    gzip.write(str.getBytes());
	    gzip.close();
	    return out.toString("ISO-8859-1");
	  }

	  //    
	  public static String uncompress(String str) throws IOException {
	    if (str == null || str.length() == 0) {
	      return str;
	    }
	    ByteArrayOutputStream out = new ByteArrayOutputStream();
	    ByteArrayInputStream in = new ByteArrayInputStream(str
	        .getBytes("ISO-8859-1"));
	    GZIPInputStream gunzip = new GZIPInputStream(in);
	    byte[] buffer = new byte[256];
	    int n;
	    while ((n = gunzip.read(buffer)) >= 0) {
	      out.write(buffer, 0, n);
	    }
	    // toString()        ,         toString("GBK")
	    return out.toString();
	  }

	  //     
	  public static void main(String[] args) throws IOException {
		String temp = "l;jsafljsdoeiuoksjdfpwrp3oiruewoifrjewflk           safljsdoeiuoksjdfpwrp3oiruewoifrjewflk            safljsdoeiuoksjdfpwrp3oiruewoifrjewflk            safljsdoeiuoksjdfpwrp3oiruewoifrjewflk            safljsdoeiuoksjdfpwrp3oiruewoifrjewflk            safljsdoeiuoksjdfpwrp3oiruewoifrjewflk            safljsdoeiuoksjdfpwrp3oiruewoifrjewflk            safljsdoeiuoksjdfpwrp3oiruewoifrjewflk            safljsdoeiuoksjdfpwrp3oiruewoifrjewflk            safljsdoeiuoksjdfpwrp3oiruewoifrjewflk            safljsdoeiuoksjdfpwrp3oiruewoifrjewflk            safljsdoeiuoksjdfpwrp3oiruewoifrjewflk            safljsdoeiuoksjdfpwrp3oiruewoifrjewflk                  ";
		System.out.println("    ="+temp);
		System.out.println("  ="+temp.length());
		String temp1 = ZipUtil.compress(temp);
		System.out.println("       ="+temp1);
		System.out.println("     ="+temp1.length());
	    System.out.println("       ="+ZipUtil.uncompress(temp1));
	  }

}

変換元:http://www.blogjava.net/fastunit/archive/2008/04/25/195932.html