我正在学习Java,我写了一个更新文件中记录的方法。我遇到的问题是,当我问用户是否要查找另一个文件时,我的阅读器已关闭或无法为其分配任何输入。
protected boolean Update() throws InputMismatchException
{
RoomService Init =new RoomService();
Scanner input = new Scanner(System.in);
try {
boolean ans= true;
while(ans)
{
System.out.println("Please enter room number.");
String id = input.next();
Init.Update(id);
System.out.println("Press Enter to Add more or no to exit");
String choice = input.nextLine();// Skips this line
if (choice.equalsIgnoreCase(""))
{
continue;
}
else if(choice.equalsIgnoreCase("no"))
{
ans= false;
}
else
{
System.err.println("Wrong input");
throw new IOException();
}
}
} catch (IOException e) {
e.printStackTrace();
fail=true;
}
return fail;
}
想知道究竟是什么阻止我输入我也使用过的任何内容BufferedReader input = new BufferedReader(new InputStreamReader (System.in))
谢谢。
编辑:
使用扫描程序错误是:java.util.NoSuchElementException
使用 BufferedReader 错误是:java.io.IOException:流已关闭
如果你的代码中有其他任何地方,你正在使用一个包裹在System.in
上的Scanner
,确保你不要调用close()
。Scanner
本身没有需要关闭的资源,除非您要关闭基础输入源,对于围绕System.in
的Scanner
,您不需要,因为这会阻止所有将来的输入。