如果花费的时间超过2秒,是否有一种简单的方法可以跳过java中的readLine()方法?
以下是我提出这个问题的背景:
public void run()
{
boolean looping = true;
while(looping) {
for(int x = 0; x<clientList.size(); x++) {
try {
Comm s = clientList.get(x);
String str = s.recieve();
// code that does something based on the string in the line above
}
// other stuff like catch methods
}
}
}
Comm是我写的一个类,接收方法包含一个名为“in”的BufferedReader,它是这样的:
public String recieve()
{
try { if(active) return in.readLine(); }
catch(Exception e) { System.out.println("Comm Error 2: "+e); }
return "";
}
我注意到程序停止并等待输入流在继续之前要读取内容。哪个坏,因为我需要程序保持循环(因为它循环,它会转到所有其他客户端并请求输入)。如果没有什么可读的,有没有办法跳过readLine()过程?
我也很确定我没有这么好解释,所以如果我感到困惑,请问我问题。
答案 0 :(得分:4)
单独暂停不是一个好主意。每个客户端使用一个线程(或使用异步I / O,但除非您正在构建一些高性能应用程序,否则这会不必要地复杂化。)
至于超时本身,必须在封装的流上完成。请参阅示例How can I set a timeout against a BufferedReader based upon a URLConnection in Java?