Question: This method produces a Java console prompt, getting a user to press the ENTER key before the program continues. I don't fully understand what is
This method produces a Java console prompt, getting a user to press the ENTER key before the program continues. I don't fully understand what is going on in the 'try' and 'catch' blocks of code. Could this please be explained to me by using comments, line by line? Thanks. public static void promptEnterKey(){ System.out.println("Press \"ENTER\" to continue..."); try { int read = System.in.read(new byte[2]); } catch (IOException e) { e.printStackTrace(); } }
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
