java 线程 释放_java线程似乎不会被释放
我沒有回答為什么第四個連接掛起,除了說這里是一個有效的代碼版本…
public class Test {
public static void main(String[] args) throws Exception {
ServerSocket listen = new ServerSocket(9999);
ExecutorService threadPool = Executors.newFixedThreadPool(3);
while(true) {
Socket client = null;
try {
client = listen.accept();
} catch(IOException e) {
System.err.println(e);
}
System.out.println("New connection from client: " +
client.getInetAddress().getHostAddress() + "\n"
);
threadPool.execute(new ConnectionHandler(client));
}
}
}
class ConnectionHandler implements Runnable {
private Socket client;
public ConnectionHandler(Socket client) {
this.client = client;
}
@Override
public void run() {
try(BufferedReader in = new BufferedReader(new InputStreamReader(client.getInputStream()));
BufferedWriter out = new BufferedWriter(new OutputStreamWriter(client.getOutputStream()))) {
String input;
while(true) {
input = in.readLine();
if(input == null)
break;
out.write(input);
out.newLine();
out.flush();
}
} catch(IOException e) {
System.err.println("Error from socket IO.");
}
try {
client.close();
} catch(IOException e) {
System.err.println("Error when closing socket.");
}
System.out.println("Client " + client.getInetAddress().getHostAddress() +
" closed connection.\n");
}
}
我用telnet連接,回復了一些字符并斷開連接.我這樣做了5次.
New connection from client: 0:0:0:0:0:0:0:1
Client 0:0:0:0:0:0:0:1 closed connection.
New connection from client: 0:0:0:0:0:0:0:1
Client 0:0:0:0:0:0:0:1 closed connection.
New connection from client: 0:0:0:0:0:0:0:1
Client 0:0:0:0:0:0:0:1 closed connection.
New connection from client: 0:0:0:0:0:0:0:1
Client 0:0:0:0:0:0:0:1 closed connection.
New connection from client: 0:0:0:0:0:0:0:1
Client 0:0:0:0:0:0:0:1 closed connection.
唯一的區別是問題中的代碼有…
input = readLine();
在哪里我需要改變它
input = in.readLine();
有效.我想知道在未發布到問題的代碼中是否包含靜態變量或其他類型的惡作劇.
總結
以上是生活随笔為你收集整理的java 线程 释放_java线程似乎不会被释放的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 蓝色药水c语言源代码,蓝色药水4.cpp
- 下一篇: 1507四舍五入c语言,EXCEL中四舍