java UDP通信
服务器端:
public class UDPServer{
public static void main(String[] args) throws Exception{
byte buf[] = new byte[1024];
DatagramPacket dp = new DatagramPacket(buf,buf.length);
DatagramSocket ds = new DatagramSocket(5678);
while(true){
ds.receive(dp);
System.out.println(new String(buf,0,dp.getLength()));
}
}
}
客户端:
import java.net.*; import java.io.*;
public class UDPClient{
public static void main(String[] args) throws Exception{
byte[] buf = (new String("Hello Server!")).getBytes();
DatagramPacket dp = new DatagramPacket(buf,buf.length, new InetSocketAddress("127.0.0.1",5678));
DatagramSocket ds = new DatagramSocket(4567);
ds.send(dp);
ds.close();
}
}
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。