A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© clh 中级黑马   /  2014-9-18 23:28  /  514 人查看  /  0 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

数据传输这一块,在命令行中打开两个窗口,可以一个发送一个接受,那如果在eclipse里面该怎么运行下面的代码,需要做什么改动,
或者说eclipse里面只能完成在一个窗口中进行数据交流的代码,

  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.                
  9.                 BufferedReader bufr =
  10.                         new BufferedReader(new InputStreamReader(System.in));

  11.                 String line = null;

  12.                 while((line=bufr.readLine())!=null)
  13.                 {
  14.                         if("886".equals(line))
  15.                                 break;

  16.                         byte[] buf = line.getBytes();

  17.                         DatagramPacket dp =
  18.                                 new DatagramPacket(buf,buf.length,InetAddress.getByName("192.168.1.102"),10001);
  19.                         ds.send(dp);
  20.                 }
  21.                 ds.close();
  22.         }
  23. }


  24. class UdpRece2
  25. {
  26.         public static void main(String[] args) throws Exception
  27.         {
  28.                 DatagramSocket ds = new DatagramSocket(10001);

  29.                 while(true)
  30.                 {
  31.                         byte[] buf = new byte[1024];
  32.                         DatagramPacket dp = new DatagramPacket(buf,buf.length);

  33.                         ds.receive(dp);

  34.                         String ip = dp.getAddress().getHostAddress();
  35.                         String data = new String(dp.getData(),0,dp.getLength());

  36.                         System.out.println(ip+"::"+data);
  37.                 }
  38.         }
  39. }
复制代码



0 个回复

您需要登录后才可以回帖 登录 | 加入黑马