List of usage examples for java.net DatagramSocket getBroadcast
public synchronized boolean getBroadcast() throws SocketException
From source file:Main.java
public static void main(String args[]) { try {/*from w w w. j av a2 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.getBroadcast()); } catch (Exception e) { e.printStackTrace(); } }