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-readkey.jar to my classpath, and to write a few lines of code, like (def just-hit (com.acme.MagicConsole/read-char)).
Here's an "immediate echo" app using JLine which will print
ints corresponding to registered keypresses, structured as a Leiningen project:project.clj:src/con/core.clj:The functionality in question is provided by the
jline.Terminalclass, which provides a static methodgetTerminalreturning an instance of a platform-specific subclass which can be used to interact with the terminal. See the Javadoc for more details.Let's see what
asdflooks like...(C-c still kills the app, of course.)