| java.lang.Object | |||
| java.io.OutputStream | Closeable Flushable | ||
| android.awt.ImageOutputStreamWrapper | |||
| protected | ImageOutputStream | mIos |
| ImageOutputStreamWrapper(ImageOutputStream ios) |
| void | close() | ||||
| Close this OutputStream. | |||||
| void | flush() | ||||
| Flush this OutputStream. | |||||
| ImageOutputStream | getImageOutputStream() | ||||
| void | write(byte[] b) | ||||
Writes the entire contents of the byte array buffer to
this OutputStream. |
|||||
| void | write(int oneByte) | ||||
Writes the specified byte oneByte to this OutputStream. |
|||||
| void | write(byte[] b, int off, int len) | ||||
Writes count bytes from the byte array
buffer starting at offset to this
OutputStream. |
|||||
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 OutputStream.
| b | the buffer to be written |
|---|
| IOException |
|---|
oneByte to this OutputStream.
Only the low order byte of oneByte is written.
| oneByte | the byte to be written |
|---|
| IOException |
|---|
count bytes from the byte array
buffer starting at offset to this
OutputStream.
| b | the buffer to be written |
|---|---|
| off | offset in buffer to get bytes |
| len | number of bytes in buffer to write |
| IOException |
|---|