// 将压缩文件中的内容读取出来,并写进解压缩文件中
InputStream is = zf.getInputStream(entry);
FileOutputStream fos = new FileOutputStream(currentFile);
byte[] bs = new byte[1024];
int len;
while ((len=is.read(bs)) > 0) {
fos.write(bs, 0, len);
}
is.close();
fos.close();