FileDocCategorySizeDatePackage
ZipLister.javaAPI DocExample489Sun Mar 28 19:07:28 BST 1999None

ZipLister

public class ZipLister extends Object

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


    for (int i = 0; i < args.length; i++) {
      try {
        ZipFile zf = new ZipFile(args[i]);
        Enumeration e = zf.entries();
        while (e.hasMoreElements()) {
          System.out.println(e.nextElement());
        }
      }
      catch (IOException e) {
        System.err.println(e);
      }       
    }