console menu in java
Hello everyone. I want to create console menu in java where you can navigate through menu items using keybord arrows, i.e. press up to highlight upper menu item and press down to highlight menu item under it.
[208 byte] By [
corrupt] at [2007-11-20 8:08:46]

# 1 Re: console menu in java
What do you mean by a 'console menu'? To me, a console is either an OS command window or an IDE output window, both line oriented non-graphical text output.
But anyway, good luck. Ask a question if you get any problems.
Computer Science is a science of abstraction -creating the right model for a problem and devising the appropriate mechanizable techniques to solve it...
A. Aho & J. Ullman
dlorde at 2007-11-10 2:15:36 >

# 2 Re: console menu in java
I mean linux console. The problem is to make this menu where you can navigate using keyboard arrows, not giving a command followed by enter. I.e. I need to make some sort of event listener. How to do that?
Another good example is a console game where you move your character using arrows.