|
JavaTM 2 Platform Std. Ed. v1.3.1 |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--java.net.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 and receives are always enabled on a DatagramSocket.
DatagramPacket
Constructor Summary | |
DatagramSocket()
Constructs a datagram socket and binds it to any available port on the local host machine. |
|
DatagramSocket(int port)
Constructs a datagram socket and binds it to the specified port on the local host machine. |
|
DatagramSocket(int port,
InetAddress laddr)
Creates a datagram socket, bound to the specified local address. |
Method Summary | |
void |
close()
Closes this datagram socket. |
void |
connect(InetAddress address,
int port)
Connects the socket to a remote address for this socket. |
void |
disconnect()
Disconnects the socket. |
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. |
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. |
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. |
void |
receive(DatagramPacket p)
Receives a datagram packet from this socket. |
void |
send(DatagramPacket p)
Sends a datagram packet from this socket. |
static void |
setDatagramSocketImplFactory(DatagramSocketImplFactory fac)
Sets the datagram socket implementation factory for the application. |
void |
setReceiveBufferSize(int size)
Sets the SO_RCVBUF option to the specified value for this DatagramSocket. |
void |
setSendBufferSize(int size)
Sets the SO_SNDBUF option to the specified value for this DatagramSocket. |
void |
setSoTimeout(int timeout)
Enable/disable SO_TIMEOUT with the specified timeout, in milliseconds. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
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)
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 bindSocketException
- 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 connect(InetAddress address, int port)
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 invalid
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 disconnect()
connect(java.net.InetAddress, int)
public InetAddress getInetAddress()
public int getPort()
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.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.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.
SecurityException
- if a security manager exists and its
checkConnect
method doesn't allow the operation.SecurityManager.checkConnect(java.lang.String, int)
public int getLocalPort()
public void setSoTimeout(int timeout) throws SocketException
timeout
- the specified timeout in milliseconds.SocketException
- if there is an error in the underlying protocol, such as a TCP error.getSoTimeout()
public int getSoTimeout() throws SocketException
SocketException
- if there is an error in the underlying protocol, such as a TCP error.setSoTimeout(int)
public void setSendBufferSize(int size) throws SocketException
Increasing 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. For UDP, this sets the maximum size of a packet that may be sent on this socket.
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
- if there is an error
in the underlying protocol, such as a TCP error.IllegalArgumentException
- if the value is 0 or is
negative.getSendBufferSize()
public int getSendBufferSize() throws SocketException
SocketException
- if there is an error in
the underlying protocol, such as a TCP error.setSendBufferSize(int)
public void setReceiveBufferSize(int size) throws SocketException
Increasing 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. For UDP, this sets the maximum size of a packet that may be sent on this DatagramSocket.
Because SO_RCVBUF is a hint, applications that want to
verify what size the buffers were set to should call
getReceiveBufferSize()
.
size
- the size to which to set the receive buffer
size. This value must be greater than 0.SocketException
- if there is an error in
the underlying protocol, such as a TCP error.IllegalArgumentException
- if the value is 0 or is
negative.getReceiveBufferSize()
public int getReceiveBufferSize() throws SocketException
SocketException
- if there is an error in the underlying protocol, such as a TCP error.setReceiveBufferSize(int)
public void close()
public static void setDatagramSocketImplFactory(DatagramSocketImplFactory fac) throws IOException
When an application creates a new datagram socket, the socket
implementation factory's createDatagramSocketImpl
method
is
called to create the actual datagram socket implementation.
If there is a security manager, this method first calls
the security manager's checkSetFactory
method
to ensure the operation is allowed.
This could result in a SecurityException.
fac
- the desired factory.IOException
- if an I/O error occurs when setting the
datagram socket factory.SocketException
- if the factory is already defined.SecurityException
- if a security manager exists and its
checkSetFactory
method doesn't allow the
operation.DatagramSocketImplFactory.createDatagramSocketImpl()
,
SecurityManager.checkSetFactory()
|
JavaTM 2 Platform Std. Ed. v1.3.1 |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
Java, Java 2D, and JDBC are trademarks or registered trademarks of Oracle and/or its affiliates, in the US and other countries.
Copyright © 1995, 2010 Oracle and/or its affiliates. All rights reserved.