⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 java建立zip压缩文件.txt

📁 含有许多JAVA的技巧!
💻 TXT
字号:
Java建立Zip压缩文件 
(加入日期:2001-5-6 点击数:976)
【对此文发表评论】 【编程爱好者论坛】 【保存文章至硬盘】 【打印文章】 
 
import java.io.*;
import java.util.zip.*;

class Zip {
   public static void main(String args[]) throws IOException {
     byte b[] = new byte[512];
     ZipOutputStream zout = new ZipOutputStream(System.out);
     for(int i = 0; i < args.length; i ++) {
       InputStream in = new FileInputStream(args[i]);
       ZipEntry e = new ZipEntry(args[i].replace(File.separatorChar,'/'));
       zout.putNextEntry(e);
       int len=0;
       while((len=in.read(b)) != -1) {
         zout.write(b,0,len);
         }
       zout.closeEntry();
       print(e);
       }
     zout.close();
     }
     
   public static void print(ZipEntry e){
     PrintStream err = System.err;
     err.print("added " + e.getName());
     if (e.getMethod() == ZipEntry.DEFLATED) {
       long size = e.getSize();
       if (size > 0) {
         long csize = e.getCompressedSize();
         long ratio = ((size-csize)*100) / size;
         err.println(" (deflated " + ratio + "%)");
         }
       else {
         err.println(" (deflated 0%)");
         }
       }
     else {
       err.println(" (stored 0%)");
       }
     }
   }

本栏文章均来自于互联网,版权归原作者和各发布网站所有,本站收集这些文章仅供学习参考之用。任何人都不能将这些文章用于商业或者其他目的。( ProgramFan.Com ) 

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -