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 ...
|
|
CHARVA library has widgets in console. Screenshots look promising. |
||
|
|
|
|
There are various options for this, in order of simplicity and portability to features and complexity:
|
||
|
|
|
|
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. |
||
|
|
|
|
No, not using only what Java provides in the framework. Editing some text would require to
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/ |
||
|
|
