public class StreamImplOutputStream
extends java.io.OutputStream
Constructor and Description |
---|
StreamImplOutputStream(StreamImpl stream) |
Modifier and Type | Method and Description |
---|---|
void |
close()
Closes the stream.
|
void |
flush()
Flushes the write output.
|
void |
write(byte[] buffer,
int offset,
int length)
Writes a buffer to the underlying stream.
|
void |
write(int v)
Writes a byte to the underlying stream.
|
public StreamImplOutputStream(StreamImpl stream)
public void write(int v) throws java.io.IOException
write
in class java.io.OutputStream
v
- the value to writejava.io.IOException
public void write(byte[] buffer, int offset, int length) throws java.io.IOException
write
in class java.io.OutputStream
buffer
- the byte array to write.offset
- the offset into the byte array.length
- the number of bytes to write.java.io.IOException
public void flush() throws java.io.IOException
flush
in interface java.io.Flushable
flush
in class java.io.OutputStream
java.io.IOException
public void close() throws java.io.IOException
close
in interface java.io.Closeable
close
in interface java.lang.AutoCloseable
close
in class java.io.OutputStream
java.io.IOException