views:

115

answers:

4

Say I allow the user to edit something, like the phone number in an Address Book (actually, that's exactly what I'm doing). Is there something that I can add to println that will allow me to insert a variable to display as fully editable text? The assignment that I'm doing this for doesn't actually call for this, but I think it would be cool to have. I'm looking on Google but can't find anything, then again I don't really know what I'm looking for and whether or not I have the correct terms in mind ...

+2  A: 

No, not using only what Java provides in the framework. Editing some text would require to

  1. act on key press, which is not possible as in Java the input is buffered (i.e., wait for Enter to be pressed)
  2. to move around in the text you output, which is also not possible

This could be done using some native code (ncurse on linux, ...), using JNI or JNA, but not that easily.

Note that there are some projects that aim to add those functionalities, so if you can use something outside of the core libraries, you could give them a tries... for instance http://code.google.com/p/java-console-api/

penpen
A: 

If you opened a window that looks like the console window, and could react to keypress events, then you could do what you are asking, but, otherwise, if you are just running a program, the program will have ceased executing and returned control to your console, so it can't do anything else.

But, if you use a scriptable version of java you could write your own shell, and then you could do what you are asking, as the shell would not cease executing.

But, that will probably be beyond your course.

James Black
+1  A: 

There are various options for this, in order of simplicity and portability to features and complexity:

  1. Simply prompt for the information, reading a complete (return-terminated) line of response, and allow the normal terminal input facilities to be used for basic editing.

  2. Use something like the gnu readline library to allow more advanced editing. You still won't have widgets (text input boxes at specific places on screen) as such though. There's a java implementation here: http://java-readline.sourceforge.net/

  3. Use something like ncurses to specifically position the cursor, print text labels, handle keypresses, and implement your own text input box. Not fun.

  4. Use a textual user interface library (TUI), like this one: http://www.bmsi.com/tuipeer/

Lee B
+1  A: 

CHARVA library has widgets in console. Screenshots look promising.

tulskiy