java.util.jar
public class JarOutputStream extends ZipOutputStream
Constructor Summary | |
---|---|
JarOutputStream(OutputStream out)
Creates a new JarOutputStream without a manifest entry.
| |
JarOutputStream(OutputStream out, Manifest man)
Creates a new JarOutputStream with a manifest entry.
|
Method Summary | |
---|---|
void | putNextEntry(ZipEntry entry)
Prepares the JarOutputStream for writing the next entry.
|
Parameters: out the stream to create the new jar on
Throws: IOException if something unexpected happend
Parameters: out the stream to create the new jar on man the manifest that should be put in the jar file or null for no manifest entry
Throws: IOException if something unexpected happend
super.putNextEntry()
.
Parameters: entry The information for the next entry
Throws: IOException when some unexpected I/O exception occurred