摘要: Client:import java.io.*;import java.net.*;public class UDPClient { public static void main(String[] args) throws IOException { BufferedReader in = new BufferedReader(new InputStreamReader(System.in)); DatagramSocket client = new DatagramSocket(); InetAddress addr = InetAdd... 阅读全文
posted @ 2013-05-11 01:55 Sinker 阅读(130) 评论(0) 推荐(0) 编辑