摘要:
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... 阅读全文