聊天软件项目UDP升级版

 1 import java.net.*;
 2 import java.io.*;
 3 class  UdpSend2
 4 {
 5     public static void main(String[] args) throws Exception
 6     {
 7         DatagramSocket ds = new DatagramSocket();
 8         BufferedReader bufr = new BufferedReader(new InputStreamReader(System.in));
 9         String line = null;
10         while((line=bufr.readLine())!=null)
11         {
12             if("886".equals(line))
13                 break;
14             byte[] buf = line.getBytes();
15             DatagramPacket dp = 
16         new DatagramPacket(buf,buf.length,InetAddress.getByName("192.168.1.255"),10001);
17             ds.send(dp);
18         }
19         ds.close();
20     }
21 }
22 class  UdpRece2
23 {
24     public static void main(String[] args) throws Exception
25     {
26         DatagramSocket ds = new DatagramSocket(10001);
27         while(true)
28         {
29             byte[] buf = new byte[1024];
30             DatagramPacket dp = new DatagramPacket(buf,buf.length);
31             ds.receive(dp);
32             String ip = dp.getAddress().getHostAddress();
33             String data = new String(dp.getData(),0,dp.getLength());
34             System.out.println(ip+"::"+data);
35         }
36     }
37 }

 

转载于:https://www.cnblogs.com/hellochennan/p/5373199.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值