Java MulticastSocket .setNetworkInterface (NetworkInterface netIf)

Syntax

MulticastSocket.setNetworkInterface(NetworkInterface netIf) has the following syntax.

public void setNetworkInterface(NetworkInterface netIf)    throws SocketException

Example

In the following code shows how to use MulticastSocket.setNetworkInterface(NetworkInterface netIf) method.


//from  w  ww .j  a  va2s  .c  o  m
import java.net.DatagramPacket;
import java.net.InetAddress;
import java.net.InetSocketAddress;
import java.net.MulticastSocket;
import java.net.NetworkInterface;

public class Main {
  public static void main(String[] args) throws Exception {
    int port = 0;
    byte ttl = (byte) 1;

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

    MulticastSocket ms = new MulticastSocket(InetSocketAddress.createUnresolved("google.com", 8080));
    ms.joinGroup(InetSocketAddress.createUnresolved("127.0.0.1",8080),NetworkInterface.getByIndex(0));
    for (int i = 1; i < 10; i++) {
      ms.send(dp, ttl);
    }
    ms.setNetworkInterface(NetworkInterface.getByIndex(0));

    
    ms.close();
  }

}




















Home »
  Java Tutorial »
    java.net »




CookieManager
CookiePolicy
CookieStore
DatagramPacket
DatagramSocket
HttpCookie
HttpURLConnection
InetAddress
JarURLConnection
MulticastSocket
ServerSocket
Socket
SocketAddress
URI
URL
URLConnection
URLDecoder
URLEncoder