Android 利用Java实现压缩与解压缩(zip、gzip)支持中文路径
2010-11-05 00:54:57 来源:WEB开发网public static void main(String[] args) throws IOException {
//做准备压缩一个字符文件,注,这里的字符文件要是GBK编码方式的
BufferedReader in = new BufferedReader(new InputStreamReader(new FileInputStream(
"e:/tmp/source.txt"), "GBK"));
//使用GZIPOutputStream包装OutputStream流,使其具体压缩特性,最后会生成test.txt.gz压缩包
//并且里面有一个名为test.txt的文件
BufferedOutputStream out = new BufferedOutputStream(new GZIPOutputStream(
new FileOutputStream("test.txt.gz")));
System.out.println("开始写压缩文件...");
int c;
while ((c = in.read()) != -1) {
/*
* 注,这里是压缩一个字符文件,前面是以字符流来读的,不能直接存入c,因为c已是Unicode
* 码,这样会丢掉信息的(当然本身编码格式就不对),所以这里要以GBK来解后再存入。
*/
out.write(String.valueOf((char) c).getBytes("GBK"));
}
in.close();
out.close();
System.out.println("开始读压缩文件...");
//使用GZIPInputStream包装InputStream流,使其具有解压特性
BufferedReader in2 = new BufferedReader(new InputStreamReader(
new GZIPInputStream(new FileInputStream("test.txt.gz")), "GBK"));
String s;
//读取压缩文件里的内容
while ((s = in2.readLine()) != null) {
System.out.println(s);
}
in2.close();
}
}
使用Zip进行多个文件压缩
Java对Zip格式类库支持得比较全面,得用它可以把多个文件压缩成一个压缩包。这个类库使用的是标准Zip格式,所以能与很多的压缩工具兼容。
ZipOutputStream类有设置压缩方法以及在压缩方式下使用的压缩级别,zipOutputStream.setMethod(int method)设置用于条目的默认压缩方法。只要没有为单个 ZIP 文件条目指定压缩方法,就使用ZipOutputStream所设置的压缩方法来存储,默认值为 ZipOutputStream.DEFLATED(表示进行压缩存储),还可以设置成STORED(表示仅打包归档存储)。
更多精彩
赞助商链接