I have a simple method that prints a command to the screen, scan’s a user’s input, and returns it as a String. If the user’s input is invalid, it notifies the user and asks again. This method worked perfectly but my instructor mentioned that we should always close resources, so I went back and added in the close method and now I’m getting a NoSuchElementException every time the method is called, regardless of user input. Here is the code…
private String getUserString(String userCommand) {
System.out.println(userCommand);
Scanner scan = new Scanner(System.in);
String userinput = scan.nextLine().trim();
if (userinput.isEmpty()){
System.out.println("Invalid choice");
return getUserString(userCommand);
}
else {
return userinput;
}
}
The exceptions always point back to the line where userinput is initiated as scan.nextLine().trim()
NOTE* I added scan.close() on each line before each return statement, however I didn’t include it above.
When you close
scanyou are closingSystem.inand when you try to re-read from it, it will throw the exception.Your instructor is right in one aspect, you should clean up resources, just not when it comes to
System.in.Instead of re-opening the stream every time you need input you could create your
Scanneronce and just re-using it where you need input: