java.lang.Object | |||
↳ | java.io.OutputStream | ||
↳ | java.io.FilterOutputStream | ||
↳ | android.util.Base64OutputStream |
An OutputStream that does Base64 encoding on the data written to it, writing the resulting data to another OutputStream.
[Expand]
Inherited Fields | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
From class
java.io.FilterOutputStream
|
Public Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Performs Base64 encoding on the data written to the stream,
writing the encoded data to another OutputStream.
|
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Closes this stream.
| |||||||||||
Writes
count bytes from the byte array buffer starting at
offset to the target stream.
| |||||||||||
Writes one byte to the target stream.
|
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
From class
java.io.FilterOutputStream
| |||||||||||
From class
java.io.OutputStream
| |||||||||||
From class
java.lang.Object
| |||||||||||
From interface
java.io.Closeable
| |||||||||||
From interface
java.io.Flushable
| |||||||||||
From interface
java.lang.AutoCloseable
|
Performs Base64 encoding on the data written to the stream, writing the encoded data to another OutputStream.
out | the OutputStream to write the encoded data to |
---|---|
flags | bit flags for controlling the encoder; see the
constants in Base64
|
Closes this stream. This implementation closes the target stream.
IOException |
---|
Writes count
bytes from the byte array buffer
starting at
offset
to the target stream.
b | the buffer to write. |
---|---|
off | the index of the first byte in buffer to write. |
len | the number of bytes in buffer to write. |
IOException |
---|
Writes one byte to the target stream. Only the low order byte of the
integer oneByte
is written.
b | the byte to be written. |
---|
IOException |
---|