Technical data

A Using the WebLogic Java Utilities
A-24 Administration Guide
verboseToZip
When executed from the document root directory of your HTTP server,
verboseToZip takes the standard output from a Java application run in verbose mode,
finds the Java classes referenced, and creates an uncompressed
.zip file that contains
those Java classes.
Syntax
$ java utils.verboseToZip inputFile zipFileToCreate
UNIX Example
$ java -verbose myapplication > & classList.tmp
$ java utils.verboseToZip classList.tmp app2.zip
NT Example
$ java -verbose myapplication > classList.tmp
$ java utils.verboseToZip classList.tmp app3.zip
Argument Definition
inputFile
Required. Temporary file that contains the output of the application
running in verbose mode.
zipFileToCreate
Required. Name of the .zip file to be created. The resulting .zip
file is be created in the directory in which you run the program.