class BlobW extends OutputStream
| Modifier and Type | Field and Description |
|---|---|
private Blob |
blob
Blob instance
|
private int |
pos
Read position, file pointer.
|
| Constructor and Description |
|---|
BlobW(Blob blob)
Contruct OutputStream from blob instance.
|
private Blob blob
private int pos
BlobW(Blob blob)
public void close()
throws IOException
close in interface Closeableclose in interface AutoCloseableclose in class OutputStreamIOExceptionpublic void flush()
throws IOException
flush in interface Flushableflush in class OutputStreamIOExceptionpublic void write(byte[] b)
throws IOException
write in class OutputStreamb - byte array to be written at current position.IOExceptionpublic void write(byte[] b,
int off,
int len)
throws IOException
write in class OutputStreamb - byte array to be written.off - offset within byte arraylen - length of data to be writtenIOExceptionpublic void write(int v)
throws IOException
write in class OutputStreamv - byte to be written at current position.IOExceptionContact: Christian Werner