`
收藏列表
标题 标签 来源
zip打包 简单代码 随手写的
File file=new File("D:"+File.separator+"傲天工作积累笔记.txt"); 
File zipfile=new File("D:"+File.separator+"傲天工作积累笔记.zip");
InputStream input=new FileInputStream(file);  //输入
ZipOutputStream zipout=null;
zipout =new ZipOutputStream(new FileOutputStream(zipfile)); //输出
zipout.putNextEntry(new ZipEntry(file.getName()));
zipout.setComment("www.tanli.cn");
int temp=0;
while((temp=input.read())!=-1)
{
	zipout.write(temp);
}
input.close();
zipout.close();
Global site tag (gtag.js) - Google Analytics