Chinaunix首页 | 论坛 | 博客
  • 博客访问: 579368
  • 博文数量: 718
  • 博客积分: 4000
  • 博客等级: 上校
  • 技术积分: 4960
  • 用 户 组: 普通用户
  • 注册时间: 2008-10-17 13:24
文章分类

全部博文(718)

文章存档

2011年(1)

2008年(717)

我的朋友

分类:

2008-10-17 13:37:25

import java.io.File;
import org.apache.tools.zip.ZipOutputStream;
import java.io.FileInputStream;
import java.io.FileOutputStream;

public class CompressBook {    
    public CompressBook() {        
    }

public void zip(String inputFileName) throws Exception {     
    String zipFileName="c:\\test.zip";//打包后文件名字
    System.out.println(zipFileName);
    zip(zipFileName, new File(inputFileName));  
    
    }

 private void zip(String zipFileName, File inputFile)
 throws Exception {
   ZipOutputStream out = new ZipOutputStream(
new FileOutputStream(zipFileName));
   zip(out, inputFile, "");
   System.out.println("zip done");
   out.close();
 }

 private void zip(ZipOutputStream out, File f, String base)
 throws Exception {
   if (f.isDirectory()) {
     File[] fl = f.listFiles();
     out.putNextEntry(new org.apache.tools.zip.ZipEntry(base + "/"));
     base = base.length() == 0 ? "" : base + "/";
     for (int i = 0; i < fl.length; i++) {
       zip(out, fl[i], base + fl[i].getName());
     }
   }
   else {
     out.putNextEntry(new org.apache.tools.zip.ZipEntry(base));
     FileInputStream in = new FileInputStream(f);
     int b;
     System.out.println(base);
     while ( (b = in.read()) != -1) {
       out.write(b);
     }
     in.close();
   }
 }
}

--------------------next---------------------

阅读(362) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~