SQLite
class BlobW extends OutputStream
Field Summary | |
---|---|
Blob | blob
Blob instance |
int | pos
Read position, file pointer. |
Constructor Summary | |
---|---|
BlobW(Blob blob)
Contruct OutputStream from blob instance. |
Method Summary | |
---|---|
void | close()
Close this blob OutputStream. |
void | flush()
Flush blob; dummy to satisfy OutputStream class. |
void | write(int v)
Write blob data. |
void | write(byte[] b)
Write blob data. |
void | write(byte[] b, int off, int len)
Write blob data. |
Parameters: v byte to be written at current position.
Parameters: b byte array to be written at current position.
Parameters: b byte array to be written. off offset within byte array len length of data to be written