import java.net.*;
class UdpSend
{
public static void main(String[] args)throws Exception
{
DatagramSocket ds=new DatagramSocket();
byte[] buf="udp ge men lai le".getBytes();
DatagramPacket dp=
new DatagramPacket(buf,buf.length,InetAddress.getByName("192.168.2.113"),10000);
ds.send(dp);
ds.close();
}
}
class UdpRece
{
public static void main(String[] args) throws Exception
{
//System.out.println("Hello World!");
DatagramSocket ds=new DatagramSocket(10000);
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());
int port =dp.getPort();
System.out.println(ip+"::"+data+"::"+port);
ds.close();
}
}
代码应没问题 Ip地址也查了自己电脑的 程序运行没问题 为什么接受端就是没反映?UdpRece运行没问题 但是发送端运行后 UdpRece就是接受不到 求解 |