字串的壓縮和解壓縮
資料傳輸時,有時需要將資料壓縮和解壓縮,本例使用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;
// 將一個字串按照zip方式壓縮和解壓縮
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 {
System.out.println(ZipUtil.uncompress(ZipUtil.compress("中國China")));
}
}
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;
// 將一個字串按照zip方式壓縮和解壓縮
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 {
System.out.println(ZipUtil.uncompress(ZipUtil.compress("中國China")));
}
}
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/12921506/viewspace-259944/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 檔案壓縮和解壓縮
- Python實現壓縮和解壓縮Python
- linux壓縮和解壓縮命令整理Linux
- Linux中檔案的壓縮和解壓縮Linux
- pigz更快的壓縮和解壓工具
- 【Linux基礎】壓縮和解壓Linux
- linux檔案壓縮和解壓命令Linux
- zip壓縮檔案處理方案(Zip4j壓縮和解壓)
- Nginx網路壓縮 CSS壓縮 圖片壓縮 JSON壓縮NginxCSSJSON
- 強大且易於使用的壓縮和解壓縮軟體:Keka for MacMac
- PAT-B 1078 字串壓縮與解壓【字串】字串
- 字串壓縮(一)之ZSTD字串
- 『學了就忘』Linux基礎命令 — 32、壓縮和解壓縮相關命令Linux
- 8-字串的壓縮儲存字串
- JS壓縮方法及批量壓縮JS
- linux下壓縮解壓縮命令Linux
- 壓縮字串《演算法很美》字串演算法
- linux 高效壓縮工具之xz的壓縮解壓使用Linux
- Linux tar分卷壓縮與解壓縮Linux
- ppt怎麼壓縮,ppt壓縮的技巧分享
- CentOS 壓縮解壓CentOS
- Linux壓縮解壓Linux
- 字串壓縮(二)之LZ4字串
- Linux 常用的壓縮與解壓縮命令詳解Linux
- Linux下的tar壓縮解壓縮命令詳解Linux
- Gzipped 壓縮
- 打包/壓縮
- linux分卷壓縮解壓Linux
- linuxtar解壓和壓縮Linux
- 壓縮包格式有哪些?壓縮包格式大全
- 壓縮Word,一鍵實現Word文件壓縮
- pdf怎麼壓縮,好用的pdf壓縮工具介紹
- 分卷壓縮怎麼解壓 快速解壓電腦分卷壓縮檔案方法
- SQLServer的頁壓縮SQLServer
- oracle 的表壓縮Oracle
- 加密的壓縮包加密
- 影像體積壓縮工具JPEG Jackal更好的壓縮圖片
- .NET 壓縮/解壓檔案
- Keka for Mac壓縮解壓工具Mac