How can I read a single character from the keyboard without having to press the 'enter' button and without using GUI classes like KeyListener?
Created May 4, 2012
Mark Thornton The solution to this problem is OS dependent.
On Win32 you would need to use JNI to call
the SetConsoleMode function to disable the line buffering. For an example of using this method, see
http://msdn.microsoft.com/library/psdk/winbase/conchar_156b.htm.