请教各位一个zip打包的问题,我看thinkinjava里有个zip打包的程序,调试了一把,发现打打包后的文件内容都集中到其中的一个文件中去了,其他的文件都为0K里面都成空的了,能帮帮我吗?下面是程序import java.io.*;
import java.util.*;
import java.util.zip.*;
public class ZipCompress {
  // Throw exceptions to console:
  public static void main(String[] args)
  throws IOException {
    FileOutputStream f = new FileOutputStream("test.zip");
    CheckedOutputStream csum =
      new CheckedOutputStream(f, new Adler32());
     ZipOutputStream zos = new ZipOutputStream(csum);
     BufferedOutputStream out =
      new BufferedOutputStream(zos);
    // No corresponding getComment(), though.
    for(int i = 0; i < args.length; i++) {
      System.out.println("Writing file " + args[i]);
      BufferedReader in =
        new BufferedReader(new FileReader(args[i]));
      zos.putNextEntry(new ZipEntry(args[i]));
      int c;
      while((c = in.read()) != -1)
        out.write(c);
      in.close();
    }
    out.close();
    // Checksum valid only after the file has been closed!
    System.out.println("Checksum: " +
      csum.getChecksum().getValue());
    // Now extract the files:
    System.out.println("Reading file");
    FileInputStream fi = new FileInputStream("test.zip");
    CheckedInputStream csumi =
      new CheckedInputStream(fi, new Adler32());
    ZipInputStream in2 = new ZipInputStream(csumi);
    BufferedInputStream bis = new BufferedInputStream(in2);
    ZipEntry ze;
    while((ze = in2.getNextEntry()) != null) {
      System.out.println("Reading file " + ze);
      int x;
      while((x = bis.read()) != -1)
        System.out.write(x);
    }
    if(args.length == 1)
    bis.close();
    // Alternative way to open and read zip files:
    ZipFile zf = new ZipFile("test.zip");
    Enumeration e = zf.entries();
    while(e.hasMoreElements()) {
      ZipEntry ze2 = (ZipEntry)e.nextElement();
      System.out.println("File: " + ze2);
      // ... and extract the data as before
    }
    
  }
}

解决方案 »

  1.   

    这个例子我试过,没问题。Java创建ZIP压缩文件
    // These are the files to include in the ZIP file
    String[] filenames = new String[]{"filename1", "filename2"};// Create a buffer for reading the files
    byte[] buf = new byte[1024];try {
    // Create the ZIP file
    String outFilename = "outfile.zip";
    ZipOutputStream out = new ZipOutputStream(new FileOutputStream(outFilename));// Compress the files
    for (int i=0; i<filenames.length; i++) {
    FileInputStream in = new FileInputStream(filenames);// Add ZIP entry to output stream.
    out.putNextEntry(new ZipEntry(filenames));// Transfer bytes from the file to the ZIP file
    int len;
    while ((len = in.read(buf)) > 0) {
    out.write(buf, 0, len);
    }// Complete the entry
    out.closeEntry();
    in.close();
    }// Complete the ZIP file
    out.close();
    } catch (IOException e) {
    }