Package org.apache.commons.net.daytime
Class DaytimeTCPClient
- java.lang.Object
-
- org.apache.commons.net.SocketClient
-
- org.apache.commons.net.daytime.DaytimeTCPClient
-
public final class DaytimeTCPClient extends SocketClient
The DaytimeTCPClient class is a TCP implementation of a client for the Daytime protocol described in RFC 867. To use the class, merely establish a connection withconnectand callgetTime()to retrieve the daytime string, then calldisconnectto close the connection properly.- See Also:
DaytimeUDPClient
-
-
Field Summary
Fields Modifier and Type Field Description static intDEFAULT_PORTThe default daytime port 13 per RFC 867.-
Fields inherited from class org.apache.commons.net.SocketClient
_defaultPort_, _hostname_, _input_, _output_, _serverSocketFactory_, _socket_, _socketFactory_, _timeout_, connectTimeout, NETASCII_EOL, remoteInetSocketAddress
-
-
Constructor Summary
Constructors Constructor Description DaytimeTCPClient()The default DaytimeTCPClient constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetTime()Gets the time string from the server and returns it.-
Methods inherited from class org.apache.commons.net.SocketClient
_connectAction_, addProtocolCommandListener, applySocketAttributes, checkOpenOutputStream, connect, connect, connect, connect, connect, connect, createCommandSupport, disconnect, fireCommandSent, fireReplyReceived, getCharset, getCharsetName, getCommandSupport, getConnectTimeout, getDefaultPort, getDefaultTimeout, getHostAddress, getHostAddress, getKeepAlive, getLocalAddress, getLocalPort, getProxy, getReceiveBufferSize, getRemoteAddress, getRemoteInetSocketAddress, getRemotePort, getSendBufferSize, getServerSocketFactory, getSoLinger, getSoTimeout, getTcpNoDelay, isAvailable, isConnected, removeProtocolCommandListener, setCharset, setConnectTimeout, setDefaultPort, setDefaultTimeout, setKeepAlive, setProxy, setReceiveBufferSize, setSendBufferSize, setServerSocketFactory, setSocketFactory, setSoLinger, setSoTimeout, setTcpNoDelay, verifyRemote
-
-
-
-
Field Detail
-
DEFAULT_PORT
public static final int DEFAULT_PORT
The default daytime port 13 per RFC 867.- See Also:
- Constant Field Values
-
-
Method Detail
-
getTime
public java.lang.String getTime() throws java.io.IOExceptionGets the time string from the server and returns it. The server will have closed the connection at this point, so you should calldisconnectafter calling this method. To retrieve another time, you must initiate another connection withconnectbefore callinggetTime()again.- Returns:
- The time string retrieved from the server.
- Throws:
java.io.IOException- If an error occurs while fetching the time string.
-
-