Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法可以创建某种类型的侦听器来侦听 BufferedReader 中是否有新数据?我知道我可以使用类似 while 循环的东西并继续查看它是否可以读取,但即使在异步任务中,这似乎也会阻塞。
基本上我想要做的是收听新数据的套接字输入流。
java.io 中的所有内容都是阻塞模式。通常的技术是有一个专门的阅读线程。