我有一个开放的社交容器,我需要在该容器中放置一个小程序,小程序需要充当 tcpServer,我需要一些指导,我该怎么做?
问问题
885 次
1 回答
0
网络教程详细解释了如何创建 TCP 服务器套接字并接受来自它的连接。
这是它的要点:
ServerSocket serverSocket = null;
try {
serverSocket = new ServerSocket(4444);
} catch (IOException e) {
System.err.println("Could not listen on port: 4444.");
System.exit(1);
}
Socket clientSocket = null;
try {
clientSocket = serverSocket.accept();
} catch (IOException e) {
System.err.println("Accept failed.");
System.exit(1);
}
// now get the input and output streams from the client socket
// and use them to read and write to the TCP connection
clientSocket.close();
serverSocket.close();
于 2013-02-07T08:05:31.337 回答