Welcom to RO_wsy's blog

摘要: 发送者类如下:import java.net.*;public class UdpSender { /** * @param args */ public static void main(String[] args) { // TODO Auto-generated method stub try { DatagramSocket ds = new DatagramSocket(); String info = "hello snooker 中国"; ds.send(new DatagramPacket(info.getBytes(), info.getBytes(... 阅读全文
posted @ 2012-11-22 15:48 RO_wsy 阅读(193) 评论(0) 推荐(0) 编辑