java.lang.Object | ||||
java.io.OutputStream | Closeable Flushable | |||
java.io.FilterOutputStream | ||||
javax.crypto.CipherOutputStream |
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. |
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 |
---|
Copyright 2007 Google Inc. | Build 0.9_r1-98467 - 14 Aug 2008 18:48 |