Java API Tutorial - Java DatagramSocket.isBound()








Syntax

DatagramSocket.isBound() has the following syntax.

public boolean isBound()

Example

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

import java.net.DatagramPacket;
import java.net.DatagramSocket;
import java.net.InetAddress;
/*w  w  w.  j a v a2  s. com*/
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.isBound());
    } catch (Exception e) {
      e.printStackTrace();
    }
  }
} 

The code above generates the following result.