Provides utilities to extract or package JAR files.
Methods are provided to either extract or package JAR files using the JDK1.2 java.util.jar
package. Noted that JAR files created with the jar method are smaller than their
counterpart created by using the jar command provided by Java. This is probably
because the jar method here does not include any options.
Code snips from: Java Cookbook, pp 268-270 and The Java Class Libraries, pp 487-488
author: Joy M. Agustin version: $Id: JarFactory.java,v 1.1 2004/11/07 00:32:24 timshadel Exp $ |