In this section we are going to explain the process to construct a DatagramPacket object in more generic way.
Construct a DatagramSocket on an unspecified port
In this section we are going to explain the process to construct a DatagramPacket object in more generic way. Here we provide a complete example based on the method for creating the DatagramSocket object via DatagramSocket(). Firstly create a class DatagramSocketexample and initialize a object Client of DatagramSocket. Then we call DatagramSocket() method with new keyword. After that we use the try and catch block to know whether the code working correctly or not.
Here is the complete code of the Example :
import java.net.*;
|
Here is the Output of the Example :
C:\roseindia>javac DatagramSocketExample.java C:\roseindia>java DatagramSocketExample datagram Socket recive at available port |