JarOutputStream
public
class
JarOutputStream
extends ZipOutputStream
The JarOutputStream
class is used to write the contents
of a JAR file to any output stream. It extends the class
java.util.zip.ZipOutputStream
with support
for writing an optional Manifest
entry. The
Manifest
can be used to specify meta-information about
the JAR file and its entries.
Summary
Public methods |
void
|
putNextEntry(ZipEntry ze)
Begins writing a new JAR file entry and positions the stream
to the start of the entry data.
|
Inherited methods |
From
class
java.util.zip.ZipOutputStream
void
|
close()
Closes the ZIP output stream as well as the stream being filtered.
|
void
|
closeEntry()
Closes the current ZIP entry and positions the stream for writing
the next entry.
|
void
|
finish()
Finishes writing the contents of the ZIP output stream without closing
the underlying stream.
|
void
|
putNextEntry(ZipEntry e)
Begins writing a new ZIP file entry and positions the stream to the
start of the entry data.
|
void
|
setComment(String comment)
Sets the ZIP file comment.
|
void
|
setLevel(int level)
Sets the compression level for subsequent entries which are DEFLATED.
|
void
|
setMethod(int method)
Sets the default compression method for subsequent entries.
|
void
|
write(byte[] b, int off, int len)
Writes an array of bytes to the current ZIP entry data.
|
|
From
class
java.util.zip.DeflaterOutputStream
void
|
close()
Writes remaining compressed data to the output stream and closes the
underlying stream.
|
void
|
deflate()
Writes next block of compressed data to the output stream.
|
void
|
finish()
Finishes writing compressed data to the output stream without closing
the underlying stream.
|
void
|
flush()
Flushes the compressed output stream.
|
void
|
write(byte[] b, int off, int len)
Writes an array of bytes to the compressed output stream.
|
void
|
write(int b)
Writes a byte to the compressed output stream.
|
|
From
class
java.io.FilterOutputStream
void
|
close()
Closes this output stream and releases any system resources
associated with the stream.
|
void
|
flush()
Flushes this output stream and forces any buffered output bytes
to be written out to the stream.
|
void
|
write(byte[] b)
Writes b.length bytes to this output stream.
|
void
|
write(byte[] b, int off, int len)
Writes len bytes from the specified
byte array starting at offset off to
this output stream.
|
void
|
write(int b)
Writes the specified byte to this output stream.
|
|
From
class
java.io.OutputStream
void
|
close()
Closes this output stream and releases any system resources
associated with this stream.
|
void
|
flush()
Flushes this output stream and forces any buffered output bytes
to be written out.
|
void
|
write(byte[] b)
Writes b.length bytes from the specified byte array
to this output stream.
|
void
|
write(byte[] b, int off, int len)
Writes len bytes from the specified byte array
starting at offset off to this output stream.
|
abstract
void
|
write(int b)
Writes the specified byte to this output stream.
|
|
From
class
java.lang.Object
Object
|
clone()
Creates and returns a copy of this object.
|
boolean
|
equals(Object obj)
Indicates whether some other object is "equal to" this one.
|
void
|
finalize()
Called by the garbage collector on an object when garbage collection
determines that there are no more references to the object.
|
final
Class<?>
|
getClass()
Returns the runtime class of this Object .
|
int
|
hashCode()
Returns a hash code value for the object.
|
final
void
|
notify()
Wakes up a single thread that is waiting on this object's
monitor.
|
final
void
|
notifyAll()
Wakes up all threads that are waiting on this object's monitor.
|
String
|
toString()
Returns a string representation of the object.
|
final
void
|
wait(long millis, int nanos)
Causes the current thread to wait until another thread invokes the
notify() method or the
notifyAll() method for this object, or
some other thread interrupts the current thread, or a certain
amount of real time has elapsed.
|
final
void
|
wait(long millis)
Causes the current thread to wait until either another thread invokes the
notify() method or the
notifyAll() method for this object, or a
specified amount of time has elapsed.
|
final
void
|
wait()
Causes the current thread to wait until another thread invokes the
notify() method or the
notifyAll() method for this object.
|
|
From
interface
java.io.Closeable
abstract
void
|
close()
Closes this stream and releases any system resources associated
with it.
|
|
From
interface
java.io.Flushable
abstract
void
|
flush()
Flushes this stream by writing any buffered output to the underlying
stream.
|
|
From
interface
java.lang.AutoCloseable
abstract
void
|
close()
Closes this resource, relinquishing any underlying resources.
|
|
Public constructors
JarOutputStream
JarOutputStream (OutputStream out,
Manifest man)
Creates a new JarOutputStream
with the specified
Manifest
. The manifest is written as the first
entry to the output stream.
Parameters |
out |
OutputStream :
the actual output stream |
man |
Manifest :
the optional Manifest |
JarOutputStream
JarOutputStream (OutputStream out)
Creates a new JarOutputStream
with no manifest.
Parameters |
out |
OutputStream :
the actual output stream |
Public methods
putNextEntry
void putNextEntry (ZipEntry ze)
Begins writing a new JAR file entry and positions the stream
to the start of the entry data. This method will also close
any previous entry. The default compression method will be
used if no compression method was specified for the entry.
The current time will be used if the entry has no set modification
time.
Parameters |
ze |
ZipEntry :
the ZIP/JAR entry to be written |