org.at4j.zip.prog
Class Unzip

java.lang.Object
  extended by org.at4j.support.prog.AbstractProgram
      extended by org.at4j.zip.prog.Unzip

public final class Unzip
extends AbstractProgram

This runnable class emulates the unzip command. It understands a subset of unzip's command line arguments.

 Usage:
   java -cp [classpath] org.at4j.zip.prog.Unzip [options] file
 Where:
   classpath - Should include the at4j, bzip, lzma and entityfs-core Jars.
   options   - Unzip options (see below)
   file      - The name and path of the Zip file to unzip.
 Options:
    -q       - Quiet.
   --timing  - After extracting the files, print out how long it took.
 

Files are unpacked starting in the current working directory.

Since:
1.0
Author:
Karl Gustafsson

Constructor Summary
Unzip()
           
 
Method Summary
static void main(String[] args)
           
 
Methods inherited from class org.at4j.support.prog.AbstractProgram
getArg, getParentLocation, isFlagArgument
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

Unzip

public Unzip()
Method Detail

main

public static void main(String[] args)