黑马程序员技术交流社区

标题: UDP在DOS窗口中执行一次之后,再一次运行时的疑惑 [打印本页]

作者: 燕国庆    时间: 2012-11-28 22:45
标题: UDP在DOS窗口中执行一次之后,再一次运行时的疑惑
import java.io.*;
import java.net.*;
class Send implements Runnable
{
private DatagramSocket ds;
public Send(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 ("888".equals(line))
    {
     break;
    }
    byte[] buf=line.getBytes();
    DatagramPacket da=new DatagramPacket(buf,buf.length,InetAddress.getByName("192.168.1.101"),30002);
    ds.send(da);
   }
   ds.close();
  }
  catch (Exception e)
  {
   throw new RuntimeException("发送端异常!请注意!");
  }
}
}
class Rece implements Runnable
{
private DatagramSocket ds;
public Rece(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 data=new String(dp.getData(),0,dp.getLength());
    String ip=dp.getAddress().getHostAddress();
    System.out.println("ip="+ip+"-----"+"data="+data);
   }
  }
  catch (Exception e)
  {
   throw new RuntimeException("接收端异常!请注意!");
  }
}
}

public class  UdpDemo3
{
public static void main(String[] args) throws Exception
{
  DatagramSocket sendsocket=new DatagramSocket();
  DatagramSocket recisocket=new DatagramSocket(30001);
  new Thread(new Send(sendsocket)).start();
  new Thread(new Rece(recisocket)).start();
}
}



在Dos窗口中执行完一次再次执行时为什么总是提示地址在使用中?


作者: 黑马_郑亮新    时间: 2012-11-28 23:01
应该是端口还没释放
作者: 付莹    时间: 2012-11-29 01:17
接收没有关闭资源。接收端口没被释放。

接收.PNG (26.96 KB, 下载次数: 11)

接收.PNG





欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2