compression on different platforms
gunzip uses the gzip algorithm. Java's jar command, and the
java.util.zip package, use the PKZIP algorithm, which is not compatible with gzip.
Solaris's unzip command uses the PKZIP algorithm.
Does your HPUX system have the Java SDK installed? If so, try
jar -t <***X.zip
to see a list of files in the .zip archive, and try
jar -x <***X.zip
to uncompress them. Note: If a Java JRE is installed but not the SDK, try
java sun.tools.jar.Main -t <***X.zip
or
java sun.tools.jar.Main -x <***X.zip
--Mike Amling
|