java.lang.Object | ||
↳ | java.net.Socket | |
↳ | sun.nio.ch.SocketAdaptor |
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Binds the socket to a local address.
| |||||||||||
Closes this socket.
| |||||||||||
Connects this socket to the server with a specified timeout value.
| |||||||||||
Connects this socket to the server.
| |||||||||||
Returns the unique
SocketChannel
object associated with this socket, if any. | |||||||||||
Returns the address to which the socket is connected.
| |||||||||||
Returns an input stream for this socket.
| |||||||||||
Tests if SO_KEEPALIVE is enabled.
| |||||||||||
Gets the local address to which the socket is bound.
| |||||||||||
Returns the local port number to which this socket is bound.
| |||||||||||
Tests if OOBINLINE is enabled.
| |||||||||||
Returns an output stream for this socket.
| |||||||||||
Returns the remote port number to which this socket is connected.
| |||||||||||
Gets the value of the SO_RCVBUF option for this Socket,
that is the buffer size used by the platform for
input on this Socket.
| |||||||||||
Tests if SO_REUSEADDR is enabled.
| |||||||||||
Get value of the SO_SNDBUF option for this Socket,
that is the buffer size used by the platform
for output on this Socket.
| |||||||||||
Returns setting for SO_LINGER.
| |||||||||||
Returns setting for SO_TIMEOUT.
| |||||||||||
Tests if TCP_NODELAY is enabled.
| |||||||||||
Gets traffic class or type-of-service in the IP header
for packets sent from this Socket
As the underlying network implementation may ignore the
traffic class or type-of-service set using | |||||||||||
Returns the binding state of the socket.
| |||||||||||
Returns the closed state of the socket.
| |||||||||||
Returns the connection state of the socket.
| |||||||||||
Returns whether the read-half of the socket connection is closed.
| |||||||||||
Returns whether the write-half of the socket connection is closed.
| |||||||||||
Send one byte of urgent data on the socket.
| |||||||||||
Enable/disable SO_KEEPALIVE.
| |||||||||||
Enable/disable OOBINLINE (receipt of TCP urgent data)
By default, this option is disabled and TCP urgent data received on a
socket is silently discarded.
| |||||||||||
Sets the SO_RCVBUF option to the specified value for this
Socket.
| |||||||||||
Enable/disable the SO_REUSEADDR socket option.
| |||||||||||
Sets the SO_SNDBUF option to the specified value for this
Socket.
| |||||||||||
Enable/disable SO_LINGER with the specified linger time in seconds.
| |||||||||||
Enable/disable SO_TIMEOUT with the specified timeout, in
milliseconds.
| |||||||||||
Enable/disable TCP_NODELAY (disable/enable Nagle's algorithm).
| |||||||||||
Sets traffic class or type-of-service octet in the IP
header for packets sent from this Socket.
| |||||||||||
Places the input stream for this socket at "end of stream".
| |||||||||||
Disables the output stream for this socket.
| |||||||||||
Converts this socket to a
String . |
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
![]() | |||||||||||
![]() |
Binds the socket to a local address.
If the address is null
, then the system will pick up
an ephemeral port and a valid local address to bind the socket.
local | the SocketAddress to bind to |
---|
IOException |
---|
Closes this socket.
Any thread currently blocked in an I/O operation upon this socket
will throw a SocketException
.
Once a socket has been closed, it is not available for further networking use (i.e. can't be reconnected or rebound). A new socket needs to be created.
Closing this socket will also close the socket's
InputStream
and
OutputStream
.
If this socket has an associated channel then the channel is closed as well.
IOException |
---|
Connects this socket to the server with a specified timeout value. A timeout of zero is interpreted as an infinite timeout. The connection will then block until established or an error occurs.
remote | the SocketAddress |
---|---|
timeout | the timeout value to be used in milliseconds. |
IOException |
---|
Returns the unique SocketChannel
object associated with this socket, if any.
A socket will have a channel if, and only if, the channel itself was
created via the SocketChannel.open
or ServerSocketChannel.accept
methods.
Returns the address to which the socket is connected.
null
if the socket is not connected.
Returns an input stream for this socket.
If this socket has an associated channel then the resulting input stream delegates all of its operations to the channel. If the channel is in non-blocking mode then the input stream's read operations will throw an java.nio.channels.IllegalBlockingModeException.
Under abnormal conditions the underlying connection may be broken by the remote host or the network software (for example a connection reset in the case of TCP connections). When a broken connection is detected by the network software the following applies to the returned input stream :-
The network software may discard bytes that are buffered
by the socket. Bytes that aren't discarded by the network
software can be read using read
.
If there are no bytes buffered on the socket, or all
buffered bytes have been consumed by
read
, then all subsequent
calls to read
will throw an
IOException
.
If there are no bytes buffered on the socket, and the
socket has not been closed using close
, then
available
will
return 0
.
Closing the returned InputStream
will close the associated socket.
IOException |
---|
Tests if SO_KEEPALIVE is enabled.
boolean
indicating whether or not SO_KEEPALIVE is enabled.SocketException |
---|
Gets the local address to which the socket is bound.
InetAddress.anyLocalAddress()
if the socket is not bound yet.Returns the local port number to which this socket is bound.
Tests if OOBINLINE is enabled.
boolean
indicating whether or not OOBINLINE is enabled.SocketException |
---|
Returns an output stream for this socket.
If this socket has an associated channel then the resulting output stream delegates all of its operations to the channel. If the channel is in non-blocking mode then the output stream's write operations will throw an java.nio.channels.IllegalBlockingModeException.
Closing the returned OutputStream
will close the associated socket.
IOException |
---|
Returns the remote port number to which this socket is connected.
Gets the value of the SO_RCVBUF option for this Socket, that is the buffer size used by the platform for input on this Socket.
SocketException |
---|
Tests if SO_REUSEADDR is enabled.
boolean
indicating whether or not SO_REUSEADDR is enabled.SocketException |
---|
Get value of the SO_SNDBUF option for this Socket, that is the buffer size used by the platform for output on this Socket.
SocketException |
---|
Returns setting for SO_LINGER. -1 returns implies that the option is disabled. The setting only affects socket close.
SocketException |
---|
Returns setting for SO_TIMEOUT. 0 returns implies that the option is disabled (i.e., timeout of infinity).
SocketException |
---|
Tests if TCP_NODELAY is enabled.
boolean
indicating whether or not TCP_NODELAY is enabled.SocketException |
---|
Gets traffic class or type-of-service in the IP header for packets sent from this Socket
As the underlying network implementation may ignore the
traffic class or type-of-service set using setTrafficClass(int)
this method may return a different value than was previously
set using the setTrafficClass(int)
method on this Socket.
SocketException |
---|
Returns the binding state of the socket.
Returns the closed state of the socket.
Returns the connection state of the socket.
Returns whether the read-half of the socket connection is closed.
Returns whether the write-half of the socket connection is closed.
Send one byte of urgent data on the socket. The byte to be sent is the lowest eight bits of the data parameter. The urgent byte is sent after any preceding writes to the socket OutputStream and before any future writes to the OutputStream.
data | The byte of data to send |
---|
IOException |
---|
Enable/disable SO_KEEPALIVE.
on | whether or not to have socket keep alive turned on. |
---|
SocketException |
---|
Enable/disable OOBINLINE (receipt of TCP urgent data) By default, this option is disabled and TCP urgent data received on a socket is silently discarded. If the user wishes to receive urgent data, then this option must be enabled. When enabled, urgent data is received inline with normal data.
Note, only limited support is provided for handling incoming urgent data. In particular, no notification of incoming urgent data is provided and there is no capability to distinguish between normal data and urgent data unless provided by a higher level protocol.
on | true to enable OOBINLINE,
false to disable. |
---|
SocketException |
---|
Sets the SO_RCVBUF option to the specified value for this Socket. The SO_RCVBUF option is used by the platform's networking code as a hint for the size to set the underlying network I/O buffers.
Increasing the receive buffer size can increase the performance of network I/O for high-volume connection, while decreasing it can help reduce the backlog of incoming data.
Because SO_RCVBUF is a hint, applications that want to
verify what size the buffers were set to should call
getReceiveBufferSize()
.
The value of SO_RCVBUF is also used to set the TCP receive window that is advertized to the remote peer. Generally, the window size can be modified at any time when a socket is connected. However, if a receive window larger than 64K is required then this must be requested before the socket is connected to the remote peer. There are two cases to be aware of:
setReceiveBufferSize(int)
before the ServerSocket
is bound to a local address.size | the size to which to set the receive buffer size. This value must be greater than 0. |
---|
SocketException |
---|
Enable/disable the SO_REUSEADDR socket option.
When a TCP connection is closed the connection may remain in a timeout state for a period of time after the connection is closed (typically known as the TIME_WAIT state or 2MSL wait state). For applications using a well known socket address or port it may not be possible to bind a socket to the required SocketAddress if there is a connection in the timeout state involving the socket address or port.
Enabling SO_REUSEADDR prior to binding the socket
using bind(SocketAddress)
allows the socket to be
bound even though a previous connection is in a timeout
state.
When a Socket is created the initial setting of SO_REUSEADDR is disabled.
The behaviour when SO_REUSEADDR is enabled or
disabled after a socket is bound (See isBound()
)
is not defined.
on | whether to enable or disable the socket option |
---|
SocketException |
---|
Sets the SO_SNDBUF option to the specified value for this Socket. The SO_SNDBUF option is used by the platform's networking code as a hint for the size to set the underlying network I/O buffers.
Because SO_SNDBUF is a hint, applications that want to
verify what size the buffers were set to should call
getSendBufferSize()
.
size | the size to which to set the send buffer size. This value must be greater than 0. |
---|
SocketException |
---|
Enable/disable SO_LINGER with the specified linger time in seconds. The maximum timeout value is platform specific. The setting only affects socket close.
on | whether or not to linger on. |
---|---|
linger | how long to linger for, if on is true. |
SocketException |
---|
Enable/disable SO_TIMEOUT with the specified timeout, in milliseconds. With this option set to a non-zero timeout, a read() call on the InputStream associated with this Socket will block for only this amount of time. If the timeout expires, a java.net.SocketTimeoutException is raised, though the Socket is still valid. The option must be enabled prior to entering the blocking operation to have effect. The timeout must be > 0. A timeout of zero is interpreted as an infinite timeout.
timeout | the specified timeout, in milliseconds. |
---|
SocketException |
---|
Enable/disable TCP_NODELAY (disable/enable Nagle's algorithm).
on | true to enable TCP_NODELAY,
false to disable. |
---|
SocketException |
---|
Sets traffic class or type-of-service octet in the IP header for packets sent from this Socket. As the underlying network implementation may ignore this value applications should consider it a hint.
The tc must be in the range 0 <= tc <=
255
or an IllegalArgumentException will be thrown.
Notes:
For Internet Protocol v4 the value consists of an octet with precedence and TOS fields as detailed in RFC 1349. The TOS field is bitset created by bitwise-or'ing values such the following :-
IPTOS_LOWCOST (0x02)
IPTOS_RELIABILITY (0x04)
IPTOS_THROUGHPUT (0x08)
IPTOS_LOWDELAY (0x10)
Setting bits in the precedence field may result in a SocketException indicating that the operation is not permitted.
As RFC 1122 section 4.2.4.2 indicates, a compliant TCP implementation should, but is not required to, let application change the TOS field during the lifetime of a connection. So whether the type-of-service field can be changed after the TCP connection has been established depends on the implementation in the underlying platform. Applications should not assume that they can change the TOS field after the connection.
For Internet Protocol v6 tc
is the value that
would be placed into the sin6_flowinfo field of the IP header.
tc | an int value for the bitset. |
---|
SocketException |
---|
Places the input stream for this socket at "end of stream". Any data sent to the input stream side of the socket is acknowledged and then silently discarded.
If you read from a socket input stream after invoking shutdownInput() on the socket, the stream will return EOF.
IOException |
---|
Disables the output stream for this socket. For a TCP socket, any previously written data will be sent followed by TCP's normal connection termination sequence. If you write to a socket output stream after invoking shutdownOutput() on the socket, the stream will throw an IOException.
IOException |
---|
Converts this socket to a String
.