91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Java中怎么壓縮與解壓縮字符串

發布時間:2021-06-22 16:51:58 來源:億速云 閱讀:213 作者:Leah 欄目:編程語言

這篇文章給大家介紹Java中怎么壓縮與解壓縮字符串,內容非常詳細,感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。

方法一:用 Java8中的gzip
/**
 * 使用gzip壓縮字符串
 * @param str 要壓縮的字符串
 * @return
 */
public static String compress(String str) {
  if (str == null || str.length() == 0) {
    return str;
  }
  ByteArrayOutputStream out = new ByteArrayOutputStream();
  GZIPOutputStream gzip = null;
  try {
    gzip = new GZIPOutputStream(out);
    gzip.write(str.getBytes());
  } catch (IOException e) {
    e.printStackTrace();
  } finally {
    if (gzip != null) {
      try {
        gzip.close();
      } catch (IOException e) {
        e.printStackTrace();
      }
    }
  }
  return new sun.misc.BASE64Encoder().encode(out.toByteArray());
}
 
/**
 * 使用gzip解壓縮
 * @param compressedStr 壓縮字符串
 * @return
 */
public static String uncompress(String compressedStr) {
  if (compressedStr == null) {
    return null;
  }
 
  ByteArrayOutputStream out = new ByteArrayOutputStream();
  ByteArrayInputStream in = null;
  GZIPInputStream ginzip = null;
  byte[] compressed = null;
  String decompressed = null;
  try {
    compressed = new sun.misc.BASE64Decoder().decodeBuffer(compressedStr);
    in = new ByteArrayInputStream(compressed);
    ginzip = new GZIPInputStream(in);
    byte[] buffer = new byte[1024];
    int offset = -1;
    while ((offset = ginzip.read(buffer)) != -1) {
      out.write(buffer, 0, offset);
    }
    decompressed = out.toString();
  } catch (IOException e) {
    e.printStackTrace();
  } finally {
    if (ginzip != null) {
      try {
        ginzip.close();
      } catch (IOException e) {
      }
    }
    if (in != null) {
      try {
        in.close();
      } catch (IOException e) {
      }
    }
    if (out != null) {
      try {
        out.close();
      } catch (IOException e) {
      }
    }
  }
  return decompressed;
}
方法二:用org.apache.commons.codec.binary.Base64
/**
 * 使用org.apache.commons.codec.binary.Base64壓縮字符串
 * @param str 要壓縮的字符串
 * @return
 */
public static String compress(String str) {
  if (str == null || str.length() == 0) {
    return str;
  }
  return Base64.encodeBase64String(str.getBytes());
}
 
/**
 * 使用org.apache.commons.codec.binary.Base64解壓縮
 * @param compressedStr 壓縮字符串
 * @return
 */
public static String uncompress(String compressedStr) {
  if (compressedStr == null) {
    return null;
  }
  return Base64.decodeBase64(compressedStr);
}
注意事項

在web項目中,服務器端將加密后的字符串返回給前端,前端再通過ajax請求將加密字符串發送給服務器端處理的時候,在http傳輸過程中會改變加密字符串的內容,導致服務器解壓壓縮字符串發生異常:

java.util.zip.ZipException: Not in GZIP format

解決方法:

在字符串壓縮之后,將壓縮后的字符串BASE64加密,在使用的時候先BASE64解密再解壓即可。

關于Java中怎么壓縮與解壓縮字符串就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

平乐县| 栾城县| 沾化县| 益阳市| 贵州省| 沙洋县| 吉木乃县| 鄱阳县| 库尔勒市| 莱阳市| 曲水县| 神池县| 衡东县| 贵定县| 宣武区| 沅陵县| 榕江县| 思南县| 喀什市| 成安县| 盖州市| 离岛区| 苍梧县| 周口市| 江阴市| 罗城| 饶平县| 永修县| 依兰县| 鄂伦春自治旗| 武平县| 海伦市| 万宁市| 伊金霍洛旗| 曲阳县| 瑞丽市| 香河县| 九龙坡区| 澎湖县| 洪湖市| 绥江县|