摘要:
服务器端代码:import java.io.*;import java.net.*;/** * Created with IntelliJ IDEA. * User: HYY * Date: 13-10-30 * Time: 下午2:15 * To change this template use File | Settings | File Templates. */public class Server { public static void main(String[] args) { ServerSocket serverSocket; Buffere... 阅读全文
摘要:
import java.io.*;import java.net.ServerSocket;import java.net.Socket;import java.util.Scanner;/** * User: HYY * Date: 13-10-29 * Time: 下午9:57 * To change this template use File | Settings | File Templates. */public class Server { public static final int SERVER_PORK = 10000; public static void ... 阅读全文