所以,我正在制作一个从命令行开始的测验计划,测验有时间限制。我想做的是,即使用户正在回答问题,也要在用户的时间到了之后立即停止测验。我正在使用Java的Scanner来获取用户的输入,所以我想基本上告诉Scanner对象即使它正在接受输入的中间也要终止。
现在,我知道我可以追溯惩罚用户在事后经历一段时间,但我只是希望在超过时间限制后终止测验。有没有办法用多线程来做到这一点?
答案 0 :(得分:7)
Java Scanner正在使用阻止操作。不可能阻止它。甚至没有使用Thread.interrupt();
然而,您可以使用BufferedLineReader
阅读并能够停止该线程。它不是一个简洁的解决方案,因为它涉及暂停的短暂时间(否则它将使用100%的CPU),但它确实有效。
public static class ConsoleInputReadTask {
private final AtomicBoolean stop = new AtomicBoolean();
public void stop() {
stop.set(true);
}
public String requestInput() throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
System.out.println("ConsoleInputReadTask run() called.");
String input;
do {
System.out.println("Please type something: ");
try {
// wait until we have data to complete a readLine()
while (!br.ready() && !stop.get()) {
Thread.sleep(200);
}
input = br.readLine();
} catch (InterruptedException e) {
System.out.println("ConsoleInputReadTask() cancelled");
return null;
}
} while ("".equals(input));
System.out.println("Thank You for providing input!");
return input;
}
}
public static void main(String[] args) {
final Thread scannerThread = new Thread(new Runnable() {
@Override
public void run() {
try {
String string = new ConsoleInputReadTask().requestInput();
System.out.println("Input: " + string);
}
catch (IOException e) {
throw new RuntimeException(e);
}
}
});
scannerThread.start();
new Thread(new Runnable() {
@Override
public void run() {
try {
Thread.sleep(5000);
} catch (InterruptedException e) {
throw new RuntimeException(e);
}
scannerThread.interrupt();
}
}).start();
}