作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试让至少两台计算机连接到我的服务器,我将如何启动第二个线程?
public static void main(String[] args) throws InterruptedException {
// Create the server which waits for a client to request a connection.
while(true){
FileSharedServer server = new FileSharedServer();
Thread thread = new Thread(server);
thread.start();
}
}
这拒绝我的连接
最佳答案
您需要等待服务器中传入连接的 serverSocket.accept() 方法,并在收到连接后启动一个线程来为其提供服务,但服务器套接字保持不变,您只需循环等待下一个连接.
while (true) {
Socket connection = serverSocket.accept();
new Therad() {
public void run() {
serveConnection(connection);
}
}.start();
}
关于Java多线程仅用于2台计算机,如何在main中执行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30530698/
我是一名优秀的程序员,十分优秀!