Equivalent function to C's “_getch()” in Java?

前端 未结 7 1801
情话喂你
情话喂你 2020-11-27 07:51

I use Google Wave, and I want to emulate the ability to send messages before you actually hit the enter key.

Is there a Java equivalent to the C function _getc

7条回答
  •  离开以前
    2020-11-27 08:35

    Initially I thought of System.in.read(), but you need to get input without pressing Enter. That requires native console interaction (and console is different under every system).

    So answer is "no, there is no direct analogue".

提交回复
热议问题