public class TelnetClient extends SocketClient
The class can be used by first connecting to a server using the SocketClient connect method. Then an InputStream and OutputStream for sending and receiving data over the Telnet connection can be obtained by using the getInputStream() and getOutputStream() methods. When you finish using the streams, you must call disconnect rather than simply closing the streams.
_defaultPort_, _input_, _isConnected_, _output_, _socket_, _socketFactory_, _timeout_, NETASCII_EOL
Constructor and Description |
---|
TelnetClient()
Default TelnetClient constructor.
|
Modifier and Type | Method and Description |
---|---|
protected void |
_connectAction_()
Handles special connection requirements.
|
void |
disconnect()
Disconnects the telnet session, closing the input and output streams
as well as the socket.
|
java.io.InputStream |
getInputStream()
Returns the telnet connection input stream.
|
java.io.OutputStream |
getOutputStream()
Returns the telnet connection output stream.
|
connect, connect, connect, connect, connect, connect, getDefaultPort, getDefaultTimeout, getLocalAddress, getLocalPort, getRemoteAddress, getRemotePort, getSoLinger, getSoTimeout, getTcpNoDelay, isConnected, setDefaultPort, setDefaultTimeout, setSocketFactory, setSoLinger, setSoTimeout, setTcpNoDelay, verifyRemote
protected void _connectAction_() throws java.io.IOException
java.io.IOException
- If an error occurs during connection setup.public void disconnect() throws java.io.IOException
disconnect
in class SocketClient
java.io.IOException
- If there is an error closing the socket.public java.io.OutputStream getOutputStream()
public java.io.InputStream getInputStream()
Copyright © 1997-2002 Daniel F. Savarese. All Rights Reserved.