I have a small Java test app in Netbeans where the main() class reads input from System.in. How can I open a window into which I can type input? (I am using NB 6.7.1 on Windows 7).
|
|
|
|
|
|
|
It may not be obvious but in Netbeans the Output tab at the bottom also takes input if your main thread is waiting for input. Just type under the last output line and hit enter. In other words, the Output tab is the same as a console window. |
||
|
|
|
If you just want a small window to type some input into, then the easiest way is to use JOptionPane. For example:
Note that showInputDialog returns a String, so you'll have to convert the data to whatever format you need. If you have something more involved, then JOptionPane may not be the way to go. |
||
|
|
|
In Eclipse, you can just type in your console window. I suppose Netbeans would have a similar option. |
||
|
|
|
|
I'm pretty confident the following worked in NB 6.5 Just type into the output window which happens to accept input
|
||
|
|
|
|
if you are asking for a visual input, NetBeans provides a very easy way to manage visual components, as easy as drag-and-drop how to do it:
it may look difficult and scary for first-timers, but once you start playing with it, few minutes and you will enjoy your experiments ;) |
||
|
|
