|
|||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||||
java.lang.Object | +--java.net.DatagramPacket
This class represents a datagram packet. Datagram packets are used to implement a connectionless packet delivery service. Each message is routed from one machine to another based solely on information contained within that packet. Multiple packets sent from one machine to another might be routed differently, and might arrive in any order.
| Constructor Summary | |
DatagramPacket(byte[] buf,
int length)
Constructs a DatagramPacket for receiving packets of length length. |
|
DatagramPacket(byte[] buf,
int length,
InetAddress address,
int port)
Constructs a datagram packet for sending packets of length length to the specified port number on the specified host. |
|
DatagramPacket(byte[] buf,
int offset,
int length)
Constructs a DatagramPacket for receiving packets of length length, specifying an offset into the buffer. |
|
DatagramPacket(byte[] buf,
int offset,
int length,
InetAddress address,
int port)
|
|
| Method Summary | |
InetAddress |
getAddress()
Returns the IP address of the machine to which this datagram is being sent or from which the datagram was received. |
byte[] |
getData()
Returns the data received or the data to be sent. |
int |
getLength()
Returns the length of the data to be sent or the length of the data received. |
int |
getOffset()
Returns the offset of the data to be sent or the offset of the data received. |
int |
getPort()
Returns the port number on the remote host to which this datagram is being sent or from which the datagram was received. |
void |
setAddress(InetAddress iaddr)
Sets the IP address of the machine to which this datagram is being sent. |
void |
setData(byte[] buf)
Set the data buffer for this packet. |
void |
setData(byte[] buf,
int offset,
int length)
Set the data buffer for this packet. |
void |
setLength(int length)
Set the length for this packet. |
void |
setPort(int port)
Sets the port number on the remote host to which this datagram is being sent. |
| Methods inherited from class java.lang.Object |
equals, getClass, hashCode, toString |
| Constructor Detail |
public DatagramPacket(byte[] buf,
int offset,
int length)
buf - buffer for holding the incoming datagram.offset - the offset for the bufferlength - the number of bytes to read.
public DatagramPacket(byte[] buf,
int length)
buf - buffer for holding the incoming datagram.length - the number of bytes to read.
public DatagramPacket(byte[] buf,
int offset,
int length,
InetAddress address,
int port)
public DatagramPacket(byte[] buf,
int length,
InetAddress address,
int port)
buf - the packet data.length - the packet length.address - the destination address.port - the destination port number.| Method Detail |
public InetAddress getAddress()
public byte[] getData()
public int getLength()
public int getOffset()
public int getPort()
public void setAddress(InetAddress iaddr)
iaddr - the InetAddress
public void setData(byte[] buf)
throws NullPointerException
buf - the buffer to set for this packet.
NullPointerException - if the argument is null.
public void setData(byte[] buf,
int offset,
int length)
throws NullPointerException
buf - the buffer to set for this packetoffset - the offset into the datalength - the length of the data
NullPointerException - if the argument is null
public void setLength(int length)
throws IllegalArgumentException
length - the length to set for this packet.
IllegalArgumentException - if the length is negative of if the
length is greater than the packet's data buffer length.public void setPort(int port)
|
|||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||||