UDP数据发送
摘要:
import java.net.*;class netDemo{ public static void main(String[] args)throws Exception { System.out.println("发送数据。。。。。"); DatagramSocket ds=new DatagramSocket(); String str="哥来了"; byte[] buf=str.getBytes(); DatagramPacket dp=new DatagramPacket(buf,buf.length... 阅读全文
posted @ 2012-11-19 23:26 蝌蚪的精神 阅读(174) 评论(0) 推荐(0) 编辑