| java.lang.Object | ||||
| java.io.OutputStream | Closeable Flushable | |||
| java.io.FilterOutputStream | ||||
| javax.crypto.CipherOutputStream | ||||
Fields inherited
from class
java.io.FilterOutputStream
| CipherOutputStream(OutputStream os, Cipher c) |
| CipherOutputStream(OutputStream os) |
| void | close() | ||||
| Close this FilterOutputStream. | |||||
| void | flush() | ||||
| Flush this FilterOutputStream to ensure all pending data is sent out to the target OutputStream. | |||||
| void | write(byte[] b) | ||||
Writes the entire contents of the byte array buffer to
this FilterOutputStream. |
|||||
| void | write(int b) | ||||
Writes the specified byte oneByte to this
FilterOutputStream. |
|||||
| void | write(byte[] b, int off, int len) | ||||
Writes count bytes from the byte array
buffer starting at offset to this
FilterOutputStream. |
|||||
Methods inherited
from class
java.io.FilterOutputStream
Methods inherited
from class
java.io.OutputStream
Methods inherited
from class
java.lang.Object
Methods inherited
from interface
java.io.Closeable
Methods inherited
from interface
java.io.Flushable
| IOException |
|---|
| IOException |
|---|
buffer to
this FilterOutputStream. This implementation writes the
buffer to the target stream.
| b | the buffer to be written |
|---|
| IOException |
|---|
oneByte to this
FilterOutputStream. Only the low order byte of oneByte is
written. This implementation writes the byte to the target OutputStream.
| b | the byte to be written |
|---|
| IOException |
|---|
count bytes from the byte array
buffer starting at offset to this
FilterOutputStream. This implementation writes the buffer
to the target OutputStream.
| b | the buffer to be written |
|---|---|
| off | offset in buffer to get bytes |
| len | number of bytes in buffer to write |
| IOException |
|---|