Java 压缩解压字符串(支持中文)
public static void main(String[] args) throws Exception{
String str ="xflush3.0個人感覺最大的特點就是監控配置非常靈活,從日志的格式定義、收集、配置,都可以自定義;這樣對于老應用的打點日志,不需要關心規則的定義就可以平滑的接入該平臺。 本篇幅以AE detail的應用為例,介紹一部分業務監控規則的配置方式以及遇到的一些坑。";
System.out.println("\n原始的字符串為------->" + str);
float len0=str.length();
System.out.println("原始的字符串長度為------->"+len0);
String ys = compress(str);
System.out.println("\n壓縮后的字符串為----->" + ys);
float len1=ys.length();
System.out.println("壓縮后的字符串長度為----->" + len1);
String jy = unCompress(ys);
System.out.println("\n解壓縮后的字符串為--->" + jy);
System.out.println("解壓縮后的字符串長度為--->"+jy.length());
System.out.println("\n壓縮比例為"+len1/len0);
//判斷
if(str.equals(jy)){
System.out.println("先壓縮再解壓以后字符串和原來的是一模一樣的");
}
}
/**
* 字符串的壓縮
*
* @param str
* 待壓縮的字符串
* @return 返回壓縮后的字符串
* @throws IOException
*/
public static String compress(String str) throws IOException {
if (null == str || str.length() <= 0) {
return str;
}
// 創建一個新的 byte 數組輸出流
ByteArrayOutputStream out = new ByteArrayOutputStream();
// 使用默認緩沖區大小創建新的輸出流
GZIPOutputStream gzip = new GZIPOutputStream(out);
// 將 b.length 個字節寫入此輸出流
gzip.write(str.getBytes());
gzip.close();
// 使用指定的 charsetName,通過解碼字節將緩沖區內容轉換為字符串
return out.toString("ISO-8859-1");
}
/**
* 字符串的解壓
*
* @param str
* 對字符串解壓
* @return 返回解壓縮后的字符串
* @throws IOException
*/
public static String unCompress(String str) throws IOException {
if (null == str || str.length() <= 0) {
return str;
}
// 創建一個新的 byte 數組輸出流
ByteArrayOutputStream out = new ByteArrayOutputStream();
// 創建一個 ByteArrayInputStream,使用 buf 作為其緩沖區數組
ByteArrayInputStream in = new ByteArrayInputStream(str
.getBytes("ISO-8859-1"));
// 使用默認緩沖區大小創建新的輸入流
GZIPInputStream gzip = new GZIPInputStream(in);
byte[] buffer = new byte[256];
int n = 0;
while ((n = gzip.read(buffer)) >= 0) {// 將未壓縮數據讀入字節數組
// 將指定 byte 數組中從偏移量 off 開始的 len 個字節寫入此 byte數組輸出流
out.write(buffer, 0, n);
}
// 使用指定的 charsetName,通過解碼字節將緩沖區內容轉換為字符串
return out.toString("UTF-8");
}
轉載于:https://www.cnblogs.com/liu-bei/p/4719124.html
總結
以上是生活随笔為你收集整理的Java 压缩解压字符串(支持中文)的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 表格内容排序(js实现)
- 下一篇: Hive高级用法汇总