Addition/Multiplication of two integer numbers in Java using Graphical User Interface (GUI) using Netbeans with source code free download
At the end of this tutorial you will be able create the following Graphical User Interface with many different properties.
I'm using NetBeans IDE (Recommended for you) for this purpose. Just follow the following steps.
Open NetBeans editor and click on new project as shown blow
Select this project as a Java Application and click on next as show blow
After this name your project, what you want. I named is "Addition GUI" as shown in blow fig.
After the creating project make a new JFrame Form Class as show blow in fig.
Name this class (i.e Addition) and a JFrame Form panel create to move forward as shown blow.
Now drag a text field in you frame from Swing Controls as show shown blow
After adding text field perform the following function on it.
- Right Click on text field
- Press Backspace button to remove all the text from textField
- Press Enter to save changes
- Re-size it
Add another text field and perform same functions as above. Now right click on TextField and change the variable name to num1 and num2 (you can give it any name) respectively as show blow.
Now add two labels for both text fields from Swing Control as show blow
Right click on label and select Exit Text and named it num1 and num2 respectively. After this add a button to perform addition. When user press on the button, the result of two integer number will show to the user. Add Button from Swing Controls and rename it as you did for labels.
Add another label to JFrame Form to show result of two numbers for user and rename it (i.e The result of two numbers is: ). Now you frame is looking attractive as show blow.
Don't worry we are going to the ending stages. Now right click on the Add Button and select Events ->Action -> Action Performed as shown blow.
Now you are in source code inside an Java Method. Paste the blow code into this method.
1 2 3 4 5 | int value1 = Integer.parseInt(num1.getText()); int value2 = Integer.parseInt(num2.getText()); int result = value1 + value2; txt_result.setText("The Sum of two numbers is:" + result); |
For confirmation see the blow fig.
Line no. 3 and 4 convert values of text fields into integer value to add them. Line no. 7 set the txt_result label (which we were added) to show addition of two number to the user.
Last Stages: Now open you main class and set the JFrame Form visible using its object name as blow.
Add blow code into your main class.
1 2 | Addition add = new Addition(); add.setVisible(true); |
Now you are ready to run this project. Click on the run button and to see your hard-work. A new window will open as shown blow. So now you are able to do any arithmetic operation in Java using GUI.
Click on the download button for full source code.
nice blog bro
ReplyDeleteShare this blog with your friends to get interesting offers :)
Deletethe program does not apply
ReplyDeleteWhat's the problem that you're facing? Did you run the source code? I'll be happy to help you. Please let me know. Thanks!
DeleteRegards,
Hassnain
Why i can't download the file ?
ReplyDeleteJust click on the download now button and you'll redirect to another web page where you'll be able to download it and view it.
Delete