Home Java Network Construct a DatagramPacket to receive data



Construct a DatagramPacket to receive data
Posted on: June 16, 2009 at 12:00 AM
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.*;

public class UDPReceiver {

  public static void main(String args[]) {
  
  byte[] buffer = new byte[7087];
  DatagramPacket dp = new DatagramPacket(buffer, buffer.length);
  System.out.println("Datagram packet receive.");
  }
}


Here is the Output of the Example :

C:\roseindia>javac UDPReceiver.java

C:\roseindia>java UDPReceiver
Datagram packet receive.


Download of This Example.

 

Related Tags for Construct a DatagramPacket to receive data:
cdatastructconstvibuffergenerictaglengthforpacketramstructseceindatagrammtrpacketspackacksatpackivconsstrvinufssrireceivingthstctsfeono


More Tutorials from this section

Ask Questions?    Discuss: Construct a DatagramPacket to receive data  

Post your Comment


Your Name (*) :
Your Email :
Subject (*):
Your Comment (*):
  Reload Image
 
 

Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.