Java通过gzip对字符串进行压缩和解压缩

2018-07-20    来源:open-open

容器云强势上线!快速搭建集群,上万Linux镜像随意使用
Java通过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);
    }
    // toString()使用平台默认编码,也可以显式的指定如toString("GBK")
    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);
}

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点!
本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。

上一篇:Java排序算法 - 基数排序

下一篇:Java时间日期格式化工具类