| public class java.net DatagramSocket
|
Java SE 6 |
A datagram socket is the sending or receiving point for a packet delivery service. Each packet sent or received on a datagram socket is individually addressed and routed. Multiple packets sent from one machine to another may be routed differently, and may arrive in any order.
UDP broadcasts sends are always enabled on a DatagramSocket. In order to receive broadcast packets a DatagramSocket should be bound to the wildcard address. In some implementations, broadcast packets may also be received when a DatagramSocket is bound to a more specific address.
Example:
DatagramSocket s = new DatagramSocket(null);
s.bind(new InetSocketAddress(8888));
Which is equivalent to:
DatagramSocket s = new DatagramSocket(8888);
Both cases will create a DatagramSocket able to receive broadcasts on
UDP port 8888.
| version | 1.101, 06/08/06 |
| since | JDK1.0 |
| See also | java.net.DatagramPacket, java.nio.channels.DatagramChannel |
| Constructors | |||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| public | DatagramSocket() throws SocketException Details
Constructs a datagram socket and binds it to any available port
on the local host machine. The socket will be bound to the wildcard
address, an IP address chosen by the kernel.
If there is a security manager,
its
| ||||||||||||
| protected | DatagramSocket(DatagramSocketImpl impl) Details
Creates an unbound datagram socket with the specified
DatagramSocketImpl.
| ||||||||||||
| public | DatagramSocket(SocketAddress bindaddr) throws SocketException Details
Creates a datagram socket, bound to the specified local
socket address.
If, if the address is
If there is a security manager,
its
| ||||||||||||
| public | DatagramSocket(int port) throws SocketException Details
Constructs a datagram socket and binds it to the specified port
on the local host machine. The socket will be bound to the wildcard
address, an IP address chosen by the kernel.
If there is a security manager,
its
| ||||||||||||
| public | DatagramSocket(int port, InetAddress laddr) throws SocketException Details
Creates a datagram socket, bound to the specified local
address. The local port must be between 0 and 65535 inclusive.
If the IP address is 0.0.0.0, the socket will be bound to the
wildcard address, an IP address chosen by the kernel.
If there is a security manager,
its
| ||||||||||||
| Methods | |||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| public void | bind(SocketAddress addr) throws SocketException Details
Binds this DatagramSocket to a specific address & port.
If the address is
| ||||||||||||||||
| public void | close() Details
Closes this datagram socket.
Any thread currently blocked in If this socket has an associated channel then the channel is closed as well.
| ||||||||||||||||
| public void | connect(InetAddress address, int port) Details
Connects the socket to a remote address for this socket. When a
socket is connected to a remote address, packets may only be
sent to or received from that address. By default a datagram
socket is not connected.
If the remote destination to which the socket is connected does not exist, or is otherwise unreachable, and if an ICMP destination unreachable packet has been received for that address, then a subsequent call to send or receive may throw a PortUnreachableException. Note, there is no guarantee that the exception will be thrown. A caller's permission to send and receive datagrams to a given host and port are checked at connect time. When a socket is connected, receive and send will not perform any security checks on incoming and outgoing packets, other than matching the packet's and the socket's address and port. On a send operation, if the packet's address is set and the packet's address and the socket's address do not match, an IllegalArgumentException will be thrown. A socket connected to a multicast address may only be used to send packets.
| ||||||||||||||||
| public void | connect(SocketAddress addr) throws SocketException Details
Connects this socket to a remote socket address (IP address + port number).
| ||||||||||||||||
| public void | disconnect() Details
Disconnects the socket. This does nothing if the socket is not
connected.
| ||||||||||||||||
| public void | receive(DatagramPacket p) throws IOException Details
Receives a datagram packet from this socket. When this method
returns, the DatagramPacket's buffer is filled with
the data received. The datagram packet also contains the sender's
IP address, and the port number on the sender's machine.
This method blocks until a datagram is received. The
If there is a security manager, a packet cannot be received if the
security manager's
| ||||||||||||||||
| public void | send(DatagramPacket p) throws IOException Details
Sends a datagram packet from this socket. The
DatagramPacket includes information indicating the
data to be sent, its length, the IP address of the remote host,
and the port number on the remote host.
If there is a security manager, and the socket is not currently
connected to a remote address, this method first performs some
security checks. First, if
| ||||||||||||||||
| Properties | |||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| public boolean | isBound() Details
Returns the binding state of the socket.
| ||||||||||||
| public void | setBroadcast(boolean on) throws SocketException Details
Enable/disable SO_BROADCAST.
| ||||||||||||
| public boolean | getBroadcast() throws SocketException Details
Tests if SO_BROADCAST is enabled.
| ||||||||||||
| public DatagramChannel | getChannel() Details
Returns the unique java.nio.channels.DatagramChannel object
associated with this datagram socket, if any.
A datagram socket will have a channel if, and only if, the channel
itself was created via the
| ||||||||||||
| public boolean | isClosed() Details
Returns whether the socket is closed or not.
| ||||||||||||
| public boolean | isConnected() Details
Returns the connection state of the socket.
| ||||||||||||
| public static void | setDatagramSocketImplFactory(DatagramSocketImplFactory fac) throws IOException Details
Sets the datagram socket implementation factory for the
application. The factory can be specified only once.
When an application creates a new datagram socket, the socket
implementation factory's
Passing If there is a security manager, this method first calls
the security manager's
| ||||||||||||
| public InetAddress | getInetAddress() Details
Returns the address to which this socket is connected. Returns null
if the socket is not connected.
| ||||||||||||
| public InetAddress | getLocalAddress() Details
Gets the local address to which the socket is bound.
If there is a security manager, its
| ||||||||||||
| public int | getLocalPort() Details
Returns the port number on the local host to which this socket is bound.
| ||||||||||||
| public SocketAddress | getLocalSocketAddress() Details
Returns the address of the endpoint this socket is bound to, or
null if it is not bound yet.
| ||||||||||||
| public int | getPort() Details
Returns the port for this socket. Returns -1 if the socket is not
connected.
| ||||||||||||
| public void | setReceiveBufferSize(int size) throws SocketException Details
Sets the SO_RCVBUF option to the specified value for this
DatagramSocket. The SO_RCVBUF option is used by the
the network implementation as a hint to size the underlying
network I/O buffers. The SO_RCVBUF setting may also be used
by the network implementation to determine the maximum size
of the packet that can be received on this socket.
Because SO_RCVBUF is a hint, applications that want to
verify what size the buffers were set to should call
Increasing SO_RCVBUF may allow the network implementation
to buffer multiple packets when packets arrive faster than
are being received using Note: It is implementation specific if a packet larger than SO_RCVBUF can be received.
| ||||||||||||
| public int | getReceiveBufferSize() throws SocketException Details
Get value of the SO_RCVBUF option for this DatagramSocket, that is the
buffer size used by the platform for input on this DatagramSocket.
| ||||||||||||
| public SocketAddress | getRemoteSocketAddress() Details
Returns the address of the endpoint this socket is connected to, or
null if it is unconnected.
| ||||||||||||
| public void | setReuseAddress(boolean on) throws SocketException Details
Enable/disable the SO_REUSEADDR socket option.
For UDP sockets it may be necessary to bind more than one
socket to the same socket address. This is typically for the
purpose of receiving multicast packets
(See
Note: This functionality is not supported by all existing platforms,
so it is implementation specific whether this option will be ignored
or not. However, if it is not supported then
When a DatagramSocket 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
| ||||||||||||
| public boolean | getReuseAddress() throws SocketException Details
Tests if SO_REUSEADDR is enabled.
| ||||||||||||
| public void | setSendBufferSize(int size) throws SocketException Details
Sets the SO_SNDBUF option to the specified value for this
DatagramSocket. The SO_SNDBUF option is used by the
network implementation as a hint to size the underlying
network I/O buffers. The SO_SNDBUF setting may also be used
by the network implementation to determine the maximum size
of the packet that can be sent on this socket.
As SO_SNDBUF is a hint, applications that want to verify
what size the buffer is should call Increasing the buffer size may allow multiple outgoing packets to be queued by the network implementation when the send rate is high.
Note: If
| ||||||||||||
| public int | getSendBufferSize() throws SocketException Details
Get value of the SO_SNDBUF option for this DatagramSocket, that is the
buffer size used by the platform for output on this DatagramSocket.
| ||||||||||||
| public void | setSoTimeout(int timeout) throws SocketException Details
Enable/disable SO_TIMEOUT with the specified timeout, in
milliseconds. With this option set to a non-zero timeout,
a call to receive() for this DatagramSocket
will block for only this amount of time. If the timeout expires,
a java.net.SocketTimeoutException is raised, though the
DatagramSocket 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.
| ||||||||||||
| public int | getSoTimeout() throws SocketException Details
Retrieve setting for SO_TIMEOUT. 0 returns implies that the
option is disabled (i.e., timeout of infinity).
| ||||||||||||
| public void | setTrafficClass(int tc) throws SocketException Details
Sets traffic class or type-of-service octet in the IP
datagram header for datagrams sent from this DatagramSocket.
As the underlying network implementation may ignore this
value applications should consider it a hint.
The tc must be in the range 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 :-
Setting bits in the precedence field may result in a SocketException indicating that the operation is not permitted.
for Internet Protocol v6
| ||||||||||||
| public int | getTrafficClass() throws SocketException Details
Gets traffic class or type-of-service in the IP datagram
header for packets sent from this DatagramSocket.
As the underlying network implementation may ignore the
traffic class or type-of-service set using
| ||||||||||||
| About DocWeb · Bundles · Export · Export All | Top 10 · Statistics · Login |
| About Sun · Contact · Privacy · Terms of Use · Trademarks | Java SE 6 · Copyright © 1994-2009 Sun Microsystems, Inc.All rights reserved. Use is subject to license terms |
![]() |
![]() |
|