本帖最后由 周素强 于 2012-5-7 20:32 编辑
看视频老师讲的UDP协议写的简单聊天工具,自己也写了写 可是不知为什么发送没有问题,只是接收端为什么会出现两次,也就是说发送一行文字,而接收方显示出两行相同的文字,求解释?是不是因为连接外网的原因。 ("192.168.1.255")//经过一位同学的提示把地址改成本地回路地址:127.0.0.1后就成了一行输出了,但还是不知道其中道理?
通过QQ群里的同学们一起探讨问题原因似乎找到了,因为我机子上有两个网卡,一个是无线的一个是机子上的有线的,我现在用的是无线的。问题好像是找到了 但是原理不是不清楚??
- import java.io.*;
- import java.net.*;
- class Send2 implements Runnable
- {
- private DatagramSocket ds;
- public Send2(DatagramSocket ds)
- {
- this.ds = ds;
- }
- public void run()
- {
- try
- {
- BufferedReader bufr =
- new BufferedReader(new InputStreamReader(System.in));
- String line = null;
- while((line=bufr.readLine())!=null)
- {
- if("886".equals(line))
- break;
- byte[] buf = line.getBytes();
- DatagramPacket dp =
- new DatagramPacket(buf,buf.length,InetAddress.getByName("192.168.1.255"),10001);
- //经过一位同学的提示把地址改成本地回路地址:127.0.0.1后就成了一行输出了,但还是不知道为什么?
- ds.send(dp);
- }
- }
- catch (Exception e)
- {
- throw new RuntimeException("发送失败");
- }
-
- }
- }
- class Rece2 implements Runnable
- {
- private DatagramSocket ds;
- public Rece2(DatagramSocket ds)
- {
- this.ds = ds;
- }
- public void run()
- {
- try
- {
- while(true)
- {
- byte[] buf = new byte[1024];
- DatagramPacket dp = new DatagramPacket(buf,buf.length);
- ds.receive(dp);
- String ip = dp.getAddress().getHostAddress();
- String data = new String(dp.getData(),0,dp.getLength());
- System.out.println(ip+" : "+data);
- }
-
- }
- catch (Exception e)
- {
- throw new RuntimeException("接收失败");
- }
-
- }
- }
- class UdpSendRece2
- {
- public static void main(String[] args)throws Exception
- {
- DatagramSocket sendDs = new DatagramSocket();
- DatagramSocket receDs = new DatagramSocket(10001);
- new Thread(new Send2(sendDs)).start();
- new Thread(new Rece2(receDs)).start();
- }
- }
复制代码 |