1. 程式人生 > >黑馬程式設計師 【】java學習之路——網路程式設計 UDP 鍵盤錄入傳輸

黑馬程式設計師 【】java學習之路——網路程式設計 UDP 鍵盤錄入傳輸

import java.net.*;
import java.io.*;
class UdpRece2 
{
public static void main(String[] args) throws Exception
{
DatagramSocket ds = new DatagramSocket(10001);
while (true)
{
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());
System.out.println(ip+"::"+data);
}
}
}