Java API Tutorial - Java DatagramSocket .getRemoteSocketAddress ()








Syntax

DatagramSocket.getRemoteSocketAddress() has the following syntax.

public SocketAddress getRemoteSocketAddress()

Example

In the following code shows how to use DatagramSocket.getRemoteSocketAddress() method.

//w w  w .ja v a 2s  .co m
import java.net.DatagramPacket;
import java.net.DatagramSocket;
import java.net.InetAddress;

public class Main {

  public static void main(String args[]) {
    try {

      InetAddress ia = InetAddress.getByName("www.java2s.com");

      DatagramSocket ds = new DatagramSocket();

      byte buffer[] = "hello".getBytes();
      DatagramPacket dp = new DatagramPacket(buffer, buffer.length, ia, 80);

      
      // Send the datagram packet
      ds.send(dp);
      
      
      System.out.println(ds.getRemoteSocketAddress());
    } catch (Exception e) {
      e.printStackTrace();
    }
  }
} 

The code above generates the following result.