| java.lang.Object java.io.OutputStream org.apache.commons.net.telnet.TelnetOutputStream
TelnetOutputStream | final class TelnetOutputStream extends OutputStream (Code) | |
author: Daniel F. Savarese |
Method Summary | |
public void | close() Closes the stream. | public void | flush() Flushes the stream. | public void | write(int ch) Writes a byte to the stream. | public void | write(byte buffer) Writes a byte array to the stream. | public void | write(byte buffer, int offset, int length) Writes a number of bytes from a byte array to the stream starting from
a given offset. |
write | public void write(int ch) throws IOException(Code) | | Writes a byte to the stream.
Parameters: ch - The byte to write. exception: IOException - If an error occurs while writing to the underlyingstream. |
write | public void write(byte buffer) throws IOException(Code) | | Writes a byte array to the stream.
Parameters: buffer - The byte array to write. exception: IOException - If an error occurs while writing to the underlyingstream. |
write | public void write(byte buffer, int offset, int length) throws IOException(Code) | | Writes a number of bytes from a byte array to the stream starting from
a given offset.
Parameters: buffer - The byte array to write. Parameters: offset - The offset into the array at which to start copying data. Parameters: length - The number of bytes to write. exception: IOException - If an error occurs while writing to the underlyingstream. |
|
|