Computer Science Canada [Tutorial] JOptionPane: easy input, output with dialog boxes |
Author: | Paul [ Wed Feb 04, 2004 9:35 pm ] | ||||||||||||||
Post subject: | [Tutorial] JOptionPane: easy input, output with dialog boxes | ||||||||||||||
JOptionPane is a easy way to do dialog boxes, messages or inputs. You have to import it at the beginning of the program:
The arguments for JOptionPane: for a simple message box:
Sample program:
To show different messages with different icons, you'll need 4 arguments instead of 2.
There are different kinds of icons for a dialog box, just replace the last argument:
You can also use JOptionPane for dialog boxes for input, and assign them to variables, just put:
note: after using JOptionPane, dont forget to exit System.exit Sample Program:
NOTE: JOptionPane can ONLY be used to input string, so if you want to use numbers, you have to create separate variables to change it into integers, or real numbers. PS: I'll add more if needed, if you don't know the parse.Int part, thats ok, as long as you get the main idea of JOptionPane. These may not work 100%, feed back pls.[/b] |
Author: | Tony [ Wed Feb 04, 2004 11:03 pm ] |
Post subject: | |
nice And this is soo much simpler then setting up input buffers and exseption handlers for basic cin>> Might be using this on CCC if they'll have any questions with manual input +50Bits |
Author: | the_short1 [ Fri Apr 08, 2005 1:39 pm ] |
Post subject: | |
very nice.. i already learned this. .but its a very good tut. . heres 5bits :d |