Java API Tutorial - Java MulticastSocket .getInterface ()








Syntax

MulticastSocket.getInterface() has the following syntax.

public InetAddress getInterface()    throws SocketException

Example

In the following code shows how to use MulticastSocket.getInterface() method.

import java.net.DatagramPacket;
import java.net.InetAddress;
import java.net.MulticastSocket;
/*ww  w  .  j av  a  2s.c o m*/
public class Main {

  public static void main(String[] args) throws Exception {

    int port = 0;
    byte ttl = (byte) 1;

    InetAddress ia = InetAddress.getByName("127.0.0.1");

    byte[] data = "Here's some multicast data\r\n".getBytes();
    DatagramPacket dp = new DatagramPacket(data, data.length, ia, port);

    MulticastSocket ms = new MulticastSocket();
    ms.joinGroup(ia);
    for (int i = 1; i < 10; i++) {
      ms.send(dp, ttl);
    }
    ms.leaveGroup(ia);
    
    
    ia = ms.getInterface();
    System.out.println(ia);
    
    ms.close();
  }

}