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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

import java.net.*;
class UdpSend
{
        public static void main(String[] args) throws Exception
        {
                DatagramSocket ds = new DatagramSocket(8888);
                byte[] buf = "udp im coming".getBytes();
                DatagramPacket dp = new DatagramPacket(buf,buf.length,InetAddress.getByName("192.168.1.102"),10001);
                ds.send(dp);
                ds.close();
        }
}
//--------------------
class UdpRece
{
        public static void main(String[] args) throws Exception
        {
                DatagramSocket ds = new DatagramSocket();
                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();
        }
}
//---------------------------------------
一切步骤和按毕老师的一样, 就是接收不到消息, 为什么???????????
毕老师的是 xp系统,   我的是 win8.1 笔记本 wifi,   和这有关系吗???

2 个回复

倒序浏览
接收端监听的端口没写,DatagramSocket ds = new DatagramSocket(10001);
回复 使用道具 举报
WakeUp 发表于 2014-10-4 10:47
接收端监听的端口没写,DatagramSocket ds = new DatagramSocket(10001);

:handshake 万分感谢!!!  
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马