자바 가 gzip 를 통 해 문자열 을 압축 하고 압축 을 푸 는 코드

844 단어 IT
다음은 자바 가 gzip 을 통 해 문자열 을 압축 하고 압축 을 푸 는 내용 입 니 다.어린이 들 에 게 도 도움 이 되 기 를 바 랍 니 다.
public static String uncompressString(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);
    }
    return out.toString();
  }

public static void main(String[] args) throws IOException {
	String a = compressString("China");
	System.out.println(a);
	System.out.println(a.length());
	String b = uncompressString(a);
	System.out.println(b);
}

좋은 웹페이지 즐겨찾기