console.readkey

Reading Unicode with Console.ReadKey

Is it possible to provide Unicode input to a console app, and read the Unicode char/string via Console.ReadKey()? I know Unicode works when reading the input via other methods, but unfortunately I need to use the 'interception' feature provided by ReadKey. Update: When pasting a Unicode character such as U+03BB (λ) into the console, 3...

Readkey in Java

Hi, I am new to Java ... is there a similar method to the ReadKey() in C# to avoid that a console application closes? thanks ...

Single character console input in java/clojure

How can I read a single character/key from the console without having to hit Enter? There is an old entry in Sun's bug database claiming that it can't be done in pure java. I've found these approaches JNI JLine [http://jline.sourceforge.net/] Javacurses [http://sourceforge.net/projects/javacurses/] I'd expect to add a single magic-...