2022-04-12. zip文件压缩与解压

2022-04-19  本文已影响0人  blockstrong

zip 压缩
/**

zip 解压

/**

OutputStream out = new FileOutputStream(outPath);
byte[] buf1 = new byte[1024];
int len;
while((len=in.read(buf1))>0){
out.write(buf1,0,len);
}
in.close();
out.close();
}
System.out.println("******************解压完毕********************");
}

测试方法
public static void main(String[] args) throws IOException {
/**

/**

上一篇 下一篇

猜你喜欢

热点阅读