FileDocCategorySizeDatePackage
ZipAllFiles.javaAPI DocExample400Sun Dec 12 10:51:32 GMT 2004None

ZipAllFiles

public class ZipAllFiles extends Object

Fields Summary
public static final int
THREAD_COUNT
Constructors Summary
Methods Summary
public static voidmain(java.lang.String[] args)


       

    Vector files = new Vector();
    ZipThread[] threads = new ZipThread[THREAD_COUNT];
    
    for (int i = 0; i < threads.length; i++) {
      threads[i] = new ZipThread(files); 
      threads[i].start();
    }