Example usage for java.net DatagramSocket getReuseAddress

List of usage examples for java.net DatagramSocket getReuseAddress

Introduction

In this page you can find the example usage for java.net DatagramSocket getReuseAddress.

Prototype

public synchronized boolean getReuseAddress() throws SocketException 

Source Link

Document

Tests if SO_REUSEADDR is enabled.

Usage

From source file:Main.java

public static void main(String args[]) {
    try {//  w  w w.  j a v  a  2  s. c  o  m

        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.getReuseAddress());
    } catch (Exception e) {
        e.printStackTrace();
    }
}