黑马程序员技术交流社区

标题: 使用UDP协议编写一个网络程序,设置接收端程序监听端... [打印本页]

作者: 闭关修行小和尚    时间: 2016-1-3 23:48
标题: 使用UDP协议编写一个网络程序,设置接收端程序监听端...
这个代码理解之后真的超级简单的 ,

public static void main(String[] args) throws Exception {
                byte[] buf = new byte[1024];  
                DatagramSocket ds = new DatagramSocket(8001);
                DatagramPacket dp = new DatagramPacket(buf, 1024);
                ds.receive(dp);  
                String str = new String(dp.getData(),0, dp.getLength());
                System.out.println(str);
                ds.close();
        }
}
发送端
import java.net.*;
public class Test03 {
        public static void main(String[] args) throws Exception {
                DatagramSocket ds = new DatagramSocket(3000);
                String str = "hello world";
                DatagramPacket dp = new DatagramPacket(str.getBytes(), str.length(),
                                InetAddress.getByName("localhost"), 8001);
                ds.send(dp);
                ds.close();
        }


作者: Accoss-x    时间: 2016-1-4 00:39
加个多线程




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