1、服務端
public class UdpBroadcastServer { /** * @param args */ public static void main(String[] args) { // TODO Auto-generated method stub int port = 9999;// 開啟監聽的端口 DatagramSocket ds = null; DatagramPacket dp = null; byte[] buf = new byte[1024];// 存儲發來的消息 try { // 綁定端口的 ds = new DatagramSocket(port); dp = new DatagramPacket(buf, buf.length); System.out.println("監聽廣播端口打開:"); while (true) { ds.receive(dp); int i; StringBuffer sbuf = new StringBuffer(); for (i = 0; i < 1024; i++) { if (buf[i] == 0) { break; } sbuf.append((char) buf[i]); } System.out.println("收到廣播消息:" + sbuf.toString()); try { Thread.sleep(1000); } catch (InterruptedException e) { // TODO Auto-generated catch block e.printStackTrace(); } } } catch (SocketException e) { e.printStackTrace(); } catch (IOException e) { e.printStackTrace(); } } }
2、客戶端
public class UdpBroadcastClient { /** * @param args */ public static void main(String[] args) { // TODO Auto-generated method stub // 廣播的實現 :由客戶端發出廣播,服務器端接收 String host = "255.255.255.255";// 廣播地址 int port = 9999;// 廣播的目的端口 String message = "test";// 用於發送的字符串 try { InetAddress adds = InetAddress.getByName(host); DatagramSocket ds = new DatagramSocket(); DatagramPacket dp = new DatagramPacket(message.getBytes(), message.length(), adds, port); while (true) { ds.send(dp); try { Thread.sleep(1000); } catch (InterruptedException e) { // TODO Auto-generated catch block e.printStackTrace(); } } } catch (UnknownHostException e) { e.printStackTrace(); } catch (SocketException e) { e.printStackTrace(); } catch (IOException e) { e.printStackTrace(); } } }