
正文
java 多个文件打包zip
提示:扫一扫查出行【扫一扫了解最新限行尾号】
复制提示
/**
* 多个文件打包成zip
*/
public class ZipDemo
{
private static void create() throws Exception{
String path="d:/demo.zip";
ZipOutputStream zipOut=new ZipOutputStream(new FileOutputStream(new File(path)));
File[] files={new File("d:/1.doc"),new File("d:/2.doc")};
byte [] buffer=new byte[1024];
int len=-1;
for(int i=0;i<files.length;i++){
FileInputStream in=new FileInputStream(files[i]);
zipOut.putNextEntry(new ZipEntry(files[i].getName()));
while((len=in.read(buffer))!=-1){
zipOut.write(buffer, 0, len);
}
zipOut.closeEntry();
in.close();
}
zipOut.close();
System.out.println("文件已经压缩成zip了"+path);
}
public static void main(String[] args) throws Exception
{
create();
}
}



![【电子书】[合集/系列] 《幽游白书》[1-19卷全本][图片ZIP] 【电子书】[合集/系列] 《幽游白书》[1-19卷全本][图片ZIP]](https://www.04ip.com/template/qe/style/noimg/3.jpg)
![【电子书】[合集/系列] 《地狱老师》[冈野刚][1、2部全本][图片ZIP] 【电子书】[合集/系列] 《地狱老师》[冈野刚][1、2部全本][图片ZIP]](https://www.04ip.com/template/qe/style/noimg/12.jpg)
![【电子书】[合集/系列] 《小恐龙阿贡》[1-7卷全本][图片ZIP] 【电子书】[合集/系列] 《小恐龙阿贡》[1-7卷全本][图片ZIP]](https://www.04ip.com/template/qe/style/noimg/16.jpg)
![【电子书】[合集/系列] 《神兵玄奇》[黄玉郎][图片ZIP][共25.9G] 【电子书】[合集/系列] 《神兵玄奇》[黄玉郎][图片ZIP][共25.9G]](https://www.04ip.com/template/qe/style/noimg/19.jpg)