服务器端利用线程池回复客户端: public class Server implements Runnable { private final ServerSocket server; private final ExecutorService pool; public Server(int port, int poolSize) throws IOException { this.server = new ServerSocket(port); this.pool = Executors.ne