|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Object![]()
![]()
![]()
java.net.DatagramSocket

public class DatagramSocket

This class represents a socket for sending and receiving datagram packets.
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.
DatagramPacket
,
DatagramChannel

| Constructor Summary | |
|---|---|
|
DatagramSocket
Constructs a datagram socket and binds it to any available port on the local host machine. |
protected |
DatagramSocket
Creates an unbound datagram socket with the specified DatagramSocketImpl. |
|
DatagramSocket
Constructs a datagram socket and binds it to the specified port on the local host machine. |
|
DatagramSocket
Creates a datagram socket, bound to the specified local address. |
|
DatagramSocket
Creates a datagram socket, bound to the specified local socket address. |
| Method Summary | |
|---|---|
void |
bind
Binds this DatagramSocket to a specific address & port. |
void |
close
Closes this datagram socket. |
void |
connect
Connects the socket to a remote address for this socket. |
void |
connect
Connects this socket to a remote socket address (IP address + port number). |
void |
disconnect
Disconnects the socket. |
boolean |
getBroadcast
Tests if SO_BROADCAST is enabled. |
DatagramChannel |
getChannel
Returns the unique DatagramChannel object
associated with this datagram socket, if any. |
InetAddress |
getInetAddress
Returns the address to which this socket is connected. |
InetAddress |
getLocalAddress
Gets the local address to which the socket is bound. |
int |
getLocalPort
Returns the port number on the local host to which this socket is bound. |
SocketAddress |
getLocalSocketAddress
Returns the address of the endpoint this socket is bound to, or null if it is not bound yet. |
int |
getPort
Returns the port for this socket. |
int |
getReceiveBufferSize
Get value of the SO_RCVBUF option for this DatagramSocket, that is the buffer size used by the platform for input on this DatagramSocket. |
SocketAddress |
getRemoteSocketAddress
Returns the address of the endpoint this socket is connected to, or null if it is unconnected. |
boolean |
getReuseAddress
Tests if SO_REUSEADDR is enabled. |
int |
getSendBufferSize
Get value of the SO_SNDBUF option for this DatagramSocket, that is the buffer size used by the platform for output on this DatagramSocket. |
int |
getSoTimeout
Retrive setting for SO_TIMEOUT. |
int |
getTrafficClass
Gets traffic class or type-of-service in the IP datagram header for packets sent from this DatagramSocket. |
boolean |
isBound
Returns the binding state of the socket. |
boolean |
isClosed
Returns whether the socket is closed or not. |
boolean |
isConnected
Returns the connection state of the socket. |
void |
receive
Receives a datagram packet from this socket. |
void |
send
Sends a datagram packet from this socket. |
void |
setBroadcast
Enable/disable SO_BROADCAST. |
static void |
setDatagramSocketImplFactory
Sets the datagram socket implementation factory for the application. |
void |
setReceiveBufferSize
Sets the SO_RCVBUF option to the specified value for this DatagramSocket. |
void |
setReuseAddress
Enable/disable the SO_REUSEADDR socket option. |
void |
setSendBufferSize
Sets the SO_SNDBUF option to the specified value for this DatagramSocket. |
void |
setSoTimeout
Enable/disable SO_TIMEOUT with the specified timeout, in milliseconds. |
void |
setTrafficClass
Sets traffic class or type-of-service octet in the IP datagram header for datagrams sent from this DatagramSocket. |
Methods inherited from class java.lang.Object ![]() |
|---|
clone |
| Constructor Detail |
|---|

public DatagramSocket()
throws SocketException

If there is a security manager,
its checkListen method is first called
with 0 as its argument to ensure the operation is allowed.
This could result in a SecurityException.
SocketException

- if the socket could not be opened,
or the socket could not bind to the specified local port.
SecurityException

- if a security manager exists and its
checkListen method doesn't allow the operation.SecurityManager.checkListen(int)


protected DatagramSocket(DatagramSocketImpl![]()
![]()
impl)
impl - an instance of a DatagramSocketImpl
the subclass wishes to use on the DatagramSocket.

public DatagramSocket(SocketAddress![]()
![]()
bindaddr) throws SocketException
![]()
![]()
If, if the address is null, creates an unbound socket.
If there is a security manager,
its checkListen method is first called
with the port from the socket address
as its argument to ensure the operation is allowed.
This could result in a SecurityException.
bindaddr - local socket address to bind, or null
for an unbound socket.
SocketException

- if the socket could not be opened,
or the socket could not bind to the specified local port.
SecurityException

- if a security manager exists and its
checkListen method doesn't allow the operation.SecurityManager.checkListen(int)


public DatagramSocket(int port)
throws SocketException

If there is a security manager,
its checkListen method is first called
with the port argument
as its argument to ensure the operation is allowed.
This could result in a SecurityException.
port - port to use.
SocketException

- if the socket could not be opened,
or the socket could not bind to the specified local port.
SecurityException

- if a security manager exists and its
checkListen method doesn't allow the operation.SecurityManager.checkListen(int)


public DatagramSocket(int port,
InetAddress
laddr)
throws SocketException

If there is a security manager,
its checkListen method is first called
with the port argument
as its argument to ensure the operation is allowed.
This could result in a SecurityException.
port - local port to useladdr - local address to bind
SocketException

- if the socket could not be opened,
or the socket could not bind to the specified local port.
SecurityException

- if a security manager exists and its
checkListen method doesn't allow the operation.SecurityManager.checkListen(int)

| Method Detail |
|---|

public void bind(SocketAddress![]()
![]()
addr) throws SocketException
![]()
![]()
If the address is null, then the system will pick up
an ephemeral port and a valid local address to bind the socket.
addr - The address & port to bind to.
SocketException

- if any error happens during the bind, or if the
socket is already bound.
SecurityException

- if a security manager exists and its
checkListen method doesn't allow the operation.
IllegalArgumentException

- if addr is a SocketAddress subclass
not supported by this socket.

public void connect(InetAddress![]()
![]()
address, int port)
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.
address - the remote address for the socketport - the remote port for the socket.
IllegalArgumentException

- if the address is null,
or the port is out of range.
SecurityException

- if the caller is not allowed to
send datagrams to and receive datagrams from the address and port.disconnect()
,
send(java.net.DatagramPacket)
,
receive(java.net.DatagramPacket)


public void connect(SocketAddress![]()
![]()
addr) throws SocketException
![]()
![]()
addr - The remote address.
SocketException

- if the connect fails
IllegalArgumentException

- if addr is null or addr is a SocketAddress
subclass not supported by this socketconnect(java.net.InetAddress, int)


public void disconnect()
connect(java.net.InetAddress, int)


public boolean isBound()

public boolean isConnected()

public InetAddress![]()
![]()
getInetAddress()

public int getPort()

public SocketAddress![]()
![]()
getRemoteSocketAddress()
null if it is unconnected.
SocketAddress representing the remote
endpoint of this socket, or null if it is
not connected yet.getInetAddress()
,
getPort()
,
connect(SocketAddress)


public SocketAddress![]()
![]()
getLocalSocketAddress()
null if it is not bound yet.
SocketAddress representing the local endpoint of this
socket, or null if it is not bound yet.getLocalAddress()
,
getLocalPort()
,
bind(SocketAddress)


public void send(DatagramPacket![]()
![]()
p) throws IOException
![]()
![]()
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 p.getAddress().isMulticastAddress()
is true, this method calls the
security manager's checkMulticast method
with p.getAddress() as its argument.
If the evaluation of that expression is false,
this method instead calls the security manager's
checkConnect method with arguments
p.getAddress().getHostAddress() and
p.getPort(). Each call to a security manager method
could result in a SecurityException if the operation is not allowed.
p - the DatagramPacket to be sent.
IOException

- if an I/O error occurs.
SecurityException

- if a security manager exists and its
checkMulticast or checkConnect
method doesn't allow the send.
PortUnreachableException

- may be thrown if the socket is connected
to a currently unreachable destination. Note, there is no
guarantee that the exception will be thrown.
IllegalBlockingModeException

- if this socket has an associated channel,
and the channel is in non-blocking mode.DatagramPacket
,
SecurityManager.checkMulticast(InetAddress)
,
SecurityManager.checkConnect(java.lang.String, int)


public void receive(DatagramPacket![]()
![]()
p) throws IOException
![]()
![]()
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
length field of the datagram packet object contains
the length of the received message. If the message is longer than
the packet's length, the message is truncated.
If there is a security manager, a packet cannot be received if the
security manager's checkAccept method
does not allow it.
p - the DatagramPacket into which to place
the incoming data.
IOException

- if an I/O error occurs.
SocketTimeoutException

- if setSoTimeout was previously called
and the timeout has expired.
PortUnreachableException

- may be thrown if the socket is connected
to a currently unreachable destination. Note, there is no guarantee that the
exception will be thrown.
IllegalBlockingModeException

- if this socket has an associated channel,
and the channel is in non-blocking mode.DatagramPacket
,
DatagramSocket


public InetAddress![]()
![]()
getLocalAddress()
If there is a security manager, its
checkConnect method is first called
with the host address and -1
as its arguments to see if the operation is allowed.
InetAddress representing any local
address if either the socket is not bound, or
the security manager checkConnect
method does not allow the operationSecurityManager.checkConnect(java.lang.String, int)


public int getLocalPort()

public void setSoTimeout(int timeout)
throws SocketException

timeout - the specified timeout in milliseconds.
SocketException 