Class CheckedOutputStream
java.lang.Object
java.io.OutputStream
java.io.FilterOutputStream
java.util.zip.CheckedOutputStream
- All Implemented Interfaces:
Closeable, Flushable, AutoCloseable
An output stream that also maintains a checksum of the data being
written. The checksum can then be used to verify the integrity of
the output data.
- Since:
- 1.1
- See Also:
-
Field Summary
Fields declared in class FilterOutputStream
outModifier and TypeFieldDescriptionprotected OutputStreamThe underlying output stream to be filtered. -
Constructor Summary
ConstructorsConstructorDescriptionCheckedOutputStream(OutputStream out, Checksum cksum) Creates an output stream with the specified Checksum. -
Method Summary
Methods declared in class FilterOutputStream
close, flush, writeModifier and TypeMethodDescriptionvoidclose()Closes this output stream and releases any system resources associated with the stream.voidflush()Flushes this output stream and forces any buffered output bytes to be written out to the stream.voidwrite(byte[] b) Writesb.lengthbytes to this output stream.Methods declared in class OutputStream
nullOutputStreamModifier and TypeMethodDescriptionstatic OutputStreamReturns a newOutputStreamwhich discards all bytes.Methods declared in class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitModifier and TypeMethodDescriptionprotected Objectclone()Creates and returns a copy of this object.booleanIndicates whether some other object is "equal to" this one.protected voidfinalize()Deprecated, for removal: This API element is subject to removal in a future version.Finalization is deprecated and subject to removal in a future release.final Class<?> getClass()Returns the runtime class of thisObject.inthashCode()Returns a hash code value for this object.final voidnotify()Wakes up a single thread that is waiting on this object's monitor.final voidWakes up all threads that are waiting on this object's monitor.toString()Returns a string representation of the object.final voidwait()Causes the current thread to wait until it is awakened, typically by being notified or interrupted.final voidwait(long timeoutMillis) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.final voidwait(long timeoutMillis, int nanos) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.
-
Constructor Details
-
CheckedOutputStream
Creates an output stream with the specified Checksum.- Parameters:
out- the output streamcksum- the checksum
-
-
Method Details
-
write
Writes a byte. Will block until the byte is actually written.- Overrides:
writein classFilterOutputStream- Parameters:
b- the byte to be written- Throws:
IOException- if an I/O error has occurred
-
write
Writes an array of bytes. Will block until the bytes are actually written.- Overrides:
writein classFilterOutputStream- Parameters:
b- the data to be writtenoff- the start offset of the datalen- the number of bytes to be written- Throws:
IOException- if an I/O error has occurred- See Also:
-
getChecksum
-