In this section we provide a complete code of a example based on the method
Construct a DatagramPacket to receive data
In this section we provide a complete code of a example based on the method DatagramPacket(buffer, buffer.length) for constructs a DatagramPacket for receiving packets of length length in more generic way. First of all create a class UDPReceiver and initialize a object buffer of byte[] array. After that we call the DatagramPacket(buffer, buffer.length) method for creating a datagram packet to receive data.
Here is the code of this example:
import java.net.*;
|
Here is the Output of the Example :
C:\roseindia>javac UDPReceiver.java C:\roseindia>java UDPReceiver Datagram packet receive. |