|
Oracle interMedia Java Classes API Reference 10g Release 2 (10.2) Part No. B14301-01 |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object
java.io.OutputStream
oracle.ord.media.jai.io.SeekableOutputStream
oracle.ord.media.jai.io.ByteArraySeekableOutputStream
A SeekableOutputStream class that writes to a ByteArrayOutputStream object whose original contents will be overwritten.
Constructor Summary | |
ByteArraySeekableOutputStream(java.io.ByteArrayOutputStream baos) Creates a ByteArraySeekableOutputStream object from a ByteArrayOutputStream object. |
Method Summary | |
void |
close() Closes this output stream and releases any resources associated with this stream. |
void |
flush() Flushes the output stream and forces any buffered output bytes to be written to the stream. |
long |
getFilePointer() Returns the offset in the stream. |
long |
length() Returns the current length of the stream. |
void |
seek(long pos) Sets the file-pointer offset, measured from the beginning of this stream, at which the next write operation will occur. |
void |
truncate(long len) Truncates the stream to the specified length. |
void |
write(byte[] b) Writes all bytes in the specified byte array to the stream. |
void |
write(byte[] b, int off, int len) Writes the specified number of bytes from the specified byte array to the stream. |
void |
write(int b) Writes the specified byte to the stream. |
Methods inherited from class oracle.ord.media.jai.io.SeekableOutputStream |
wrapOutputStream |
Methods inherited from class java.lang.Object |
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
public ByteArraySeekableOutputStream(java.io.ByteArrayOutputStream baos) throws java.io.IOException
baos
- the byte array output stream to which data will be written.Method Detail |
public long length() throws java.io.IOException
length
in class SeekableOutputStream
java.io.IOException
- if an IO error occurs.public long getFilePointer() throws java.io.IOException
getFilePointer
in class SeekableOutputStream
java.io.IOException
- if an IO error occurs.public void seek(long pos) throws java.io.IOException
The offset may be set beyond the end of the stream. Setting the offset beyond the end of the stream does not change the stream length; the stream length will change only by writing after the offset has been set beyond the end of the stream.
In Java, a byte array cannot be longer than 2 gigabytes, therefore the value of the pos parameter cannot be larger than 2^31-1.
seek
in class SeekableOutputStream
pos
- the offset position, measured in bytes from the beginning of the stream, at which to set the file pointer.java.io.IOException
- if the value of the pos parameter is less than zero or larger than 2^31-1, or if an IO error occurs.public void truncate(long len) throws java.io.IOException
truncate
in class SeekableOutputStream
len
- the length of the stream, in bytes.java.io.IOException
- if the value of the len parameter is less than zero or larger than the stream length, or if an IO error occurs.public void write(int b) throws java.io.IOException
b
- the byte to be written to the stream. Only the low-order byte is written; the upper 24 bits are ignored.java.io.IOException
- if an IO error occurs.public void write(byte[] b) throws java.io.IOException
b
- an array of bytes to be written to the stream.java.io.IOException
- if an IO error occurs.public void write(byte[] b, int off, int len) throws java.io.IOException
b
- the buffer containing the data to be written to the stream.off
- the starting position for the offset in the buffer.len
- the number of bytes to write to the stream.java.io.IOException
- if an IO error occurs.public void flush() throws java.io.IOException
There is little need to call this method until all the data has been written because the close method includes a call to the flush method.
java.io.IOException
- if an IO error occurs.public void close() throws java.io.IOException
flush()
method to write any buffered bytes to the stream.java.io.IOException
- if an IO error occurs.
|
Oracle interMedia Java Classes API Reference 10g Release 2 (10.2) Part No. B14301-01 |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |