Problem
System.in.read()
only holds execution of your application if there is no data to read in standard input stream (represented by System.in
).
But in console when you press ENTER, two things happen:
So as you see if you want to pause your loop in each next iteration, you will need to empty data from input stream before leaving current iteration. But System.in.read()
reads only one character at a time, in your case
leaving
for next iteration (so no pause there).
So before pause will be again available you need to read twice in one iteration.
Solution
If you want to get rid of this problem in OS independent way use BufferedReader#readLine()
or Scanner#nextLine
like:
String strObj1 = "First String";
try(Scanner sc = new Scanner(System.in)){//will automatically close resource
for (int i = 0; i < strObj1.length(); i++) {
System.out.print(strObj1.charAt(i));
sc.nextLine();
}
}
These methods also solve problem of potential extra characters placed before pressing enter, since each of them will also be placed in standard input stream, which would require additional .read()
calls.
* along with rest of potential characters which ware provided before pressing enter
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…