Java DatagramSocket .setReuseAddress (boolean on)

Syntax

DatagramSocket.setReuseAddress(boolean on) has the following syntax.

public void setReuseAddress(boolean on)   throws SocketException

Example

In the following code shows how to use DatagramSocket.setReuseAddress(boolean on) method.


//  www .java 2s. c  o 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);
      ds.setReuseAddress(true);
      ds.send(dp);
      
    } catch (Exception e) {
      e.printStackTrace();
    }
  }
} 




















Home »
  Java Tutorial »
    java.net »




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