Cleaned up example

This commit is contained in:
nathan 2016-05-31 01:07:02 +02:00
parent 71d7364008
commit d4e211974d

View File

@ -112,13 +112,13 @@ class AnsiConsoleExample {
.a(" ") .a(" ")
.restoreCursorPosition()); .restoreCursorPosition());
System.err.println("ver : " + Console.getVersion()); System.out.println("ver : " + Console.getVersion());
System.out.println(); System.out.println();
System.out.println("Now testing the input console. 'q' to quit"); System.out.println("Now testing the input console. 'q' to quit");
int read; int read;
while ((read = Console.read()) != 'q') { while ((read = Console.in().read()) != 'q') {
if (Character.isDigit(read)) { if (Character.isDigit(read)) {
int numericValue = Character.getNumericValue(read); int numericValue = Character.getNumericValue(read);
// reverse if pressing 2 // reverse if pressing 2
@ -131,14 +131,14 @@ class AnsiConsoleExample {
System.out.flush(); // flush guarantees the terminal moves the way we want System.out.flush(); // flush guarantees the terminal moves the way we want
} }
} }
// System.err.println("READ :" + read + " (" + (char) read + ")"); System.err.println("char :" + read + " (" + (char) read + ")");
} }
System.out.println(); System.out.println();
System.out.println("Now testing the input console LINE input. 'q' to quit"); System.out.println("Now testing the input console LINE input. 'q' to quit");
String line; String line;
while (!(line = Console.readLine()).equals("q")) { while (!(line = Console.in().readLine()).equals("q")) {
System.err.println("line: " + line); System.err.println("line: " + line);
} }
} }