标签:
使用Apache Commons Compress实现压缩数据存取,支持格式有XZ,7z,tar,zip,jar,bzip2,gzip等。
例子在 https://commons.apache.org/compress/examples.html
而java se包含gzip功能。
InputStream is = new GZIPInputStream(new FileInputStream(file));
标签:
原文地址:http://www.cnblogs.com/silvestris/p/5164256.html