IITDU Forum
Would you like to react to this message? Create an account in a few clicks or log in to continue.

Simple Calculator In Java

3 posters

Go down

Simple Calculator In Java Empty Simple Calculator In Java

Post by BIT0112-Rokon Tue Jun 08, 2010 4:52 am

Simple
Calculator in Java

Guys, today I
wanna show you how to make a simple calculator in Java. Its pretty
simple. First we will make the logic of calculation. For say we need to
perform addition. So we have to write a method that can perform the
addition operation. so here is the method…

public double add(double a, double b) {
return a + b;
}

here I write a method named add(). it takes two double parameter and
perform addition and return the result
here is the rest of the code I have write for Calculation Logic




Code:

package com.rokon.tutorail.calculator;

public class CalculatorLogic {

    // a method defined for performing addition. it takes two double as
    // parameter and returns their add result
    public double add(double a, double b) {
        return a + b;
    }

    // a method defined for performing subtraction. it takes two double as
    // parameter and returns their subtract result
    public double substruct(double a, double b) {
        return a - b;
    }

    // a method defined for performing multiplication. it takes two double as
    // parameter and returns their multiplying result
    public double multiply(double a, double b) {
        return a * b;
    }

    // a method defined for performing Division. it takes two double as
    // parameter and returns their division result. if here happen any
    // situation of division by zero, it will return zero ...here I manually
    // handle exception instead of Java exception handling..
    public double divide(double a, double b) {
        if (b == 0) {
            System.out.println("cant divide by zero");
            return 0;
        } else
            return a / b;
    }

    // this method defined for make string value to double.. its called parsing
    public double stringToDouble(String a) {
        return Double.parseDouble(a);
    }
}

and then we make a gui that is graphical user interface.. here I use
Java commenting properly. So it should be clear to you if you read it
clear-fully
so code for GUI is here

view source




Code:

package com.rokon.tutorail.calculator;

/* ***************************************************************************
 * A simple Calculator by-- Bazlur Rahman
 * Level    : Intermediate.
 * Structure : Two files: Calculation Logic, GUI (subclass of JFrame)
 * Components: JButton, JTextField (right justified).
 * Containers: JFrame, a JPanels.
 * Layouts  : FlowLayout to put the buttonPanel, JTextFiled.
 * GridLayout in the Buttonpanel for the buttons.
 * Listeners : One ActionListener which is shared by all
 * numeric key buttons.
 * Other    : Use Font to enlarge font for components.
 *
 * Authors: A. N. M. Bazlur Rahman
 * email: anm_brr@yahoo.com   

 *************************************************************************/

import java.awt.Dimension;
import java.awt.FlowLayout;
import java.awt.Font;
import java.awt.GridLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;

import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.JTextField;
import javax.swing.UIManager;
import javax.swing.UnsupportedLookAndFeelException;

public class CalcGui extends JFrame implements ActionListener {
    // Constant
    private final static Font BIGGER_FONT = new Font("monspaced", Font.PLAIN,
            20);

    private JTextField displayField; // component reference to display the
    // result
    private JPanel buttonPanel; // component reference to hold the button of the
    // calculator

    private CalculatorLogic calLogic = new CalculatorLogic(); // instance of the
    // CalculatorLogic
    // Class

    private JButton clear; // reference of clear button to clear the
    // displayFiled

    // here is some flag used different purpose
    private boolean pluz = false; // while true program perform addition
    private boolean subs = false; // while true program perform subtraction
    private boolean multiply = false; // while true program perform
    // multiplication
    private boolean divide = false; // while true program perform division
    private boolean startNumber = true; // decided to use for further
    // development. here actually no use
    // it..
    private boolean dotCheck = false;// if it is false we can put dot otherwise
    // not..

    private String firstValue, Secondvalue; // here our all operation between

    // two value. so here the two variables store the values

    // =======================================================================//
    public CalcGui() {
        super("Simple Calculator"); // name of the frame

        setLayout(new FlowLayout()); // I use FlowLayout in Our Frame

        // attributes of display fields
        displayField = new JTextField("", 12); // instance of the button panel
        displayField.setHorizontalAlignment(JTextField.RIGHT);
        // set the display text from right side.
        displayField.setFont(BIGGER_FONT); // set the font of the displayField
        add(displayField); // add() method is called for adding the displayField
        // in the Frame

        buttonPanel = new JPanel(); // instance of the button panel that holds
        buttonPanel.setPreferredSize(new Dimension(250, 150)); // here
        // setPreferredSize()
        // used to set
        // size of the
        // button Panel.
        // it take a
        // Dimension as
        // a parameter
        // lots of button of the calculator

        String buttonOrder = "789/456*123-0.=+"; // orientation of Button

        buttonPanel.setLayout(new GridLayout(4, 4, 10, 10)); // we use
        // GridLayout in
        // the
        // buttonPanel.
        // and there is
        // 10 pixel
        // space between
        // every button
        // and here I
        // make 4
        // columns and 4
        // rows for the
        // button
        // orientation

        // for loop is used to make the button
        for (int i = 0; i < buttonOrder.length(); i++) {
            String topKey = buttonOrder.substring(i, i + 1);// substring method
            // is called to get
            // the button name
            // from the
            // buttonOrder
            // String
            JButton button = new JButton(topKey); // / here we instantiate the
            // button with a name
            buttonPanel.add(button); // here we add the button in the
            // buttonPanel
            button.addActionListener(this); // here we add a ActionListener for
            // the button
        }

        add(buttonPanel);// at lastly we add the buttonPanel to the frame

        clear = new JButton("Clear"); // here is the instance of clear button
        clear.addActionListener(this); // add the actionListener for the clear
        // button
        add(clear); // add the clear button to the Frame

    }

    // ======================================================================//

    // here we override the actionPerformed method in the ActionListener
    // interface
    @Override
    public void actionPerformed(ActionEvent e) {
        // here is some if else condition ... if startNumber is true then we can
        // add some value in the displayField to perform our operation
        if (e.getActionCommand().endsWith("7")) {
            if (startNumber) {
                displayField.setText(displayField.getText() + "7");
            }
        } else if (e.getActionCommand().endsWith("8")) {
            if (startNumber) {
                displayField.setText(displayField.getText() + "8");
            }
        } else if (e.getActionCommand().endsWith("9")) {
            if (startNumber) {
                displayField.setText(displayField.getText() + "9");
            }
        } else if (e.getActionCommand().endsWith("4")) {
            if (startNumber) {
                displayField.setText(displayField.getText() + "4");
            }
        } else if (e.getActionCommand().endsWith("5")) {
            if (startNumber) {
                displayField.setText(displayField.getText() + "5");
            }
        } else if (e.getActionCommand().endsWith("6")) {
            if (startNumber) {
                displayField.setText(displayField.getText() + "6");
            }
        } else if (e.getActionCommand().endsWith("3")) {
            if (startNumber) {
                displayField.setText(displayField.getText() + "3");
            }
        } else if (e.getActionCommand().endsWith("2")) {
            if (startNumber) {
                displayField.setText(displayField.getText() + "2");
            }
        } else if (e.getActionCommand().endsWith("1")) {
            if (startNumber) {
                displayField.setText(displayField.getText() + "1");
            }
        } else if (e.getActionCommand().endsWith("0")) {
            if (startNumber) {
                displayField.setText(displayField.getText() + "0");
            }
        } else if (e.getActionCommand().endsWith(".")) {
            // if dotCheck boolean type is false, then we can add a dot in the
            // displayFiled otherwise not.
            // it is used to avoid multiple dot in the displayFiled
            if (dotCheck == false) {
                dotCheck = true;
                displayField.setText(displayField.getText() + ".");
            }
        } else if (e.getActionCommand().endsWith("+")) {
            // here if the actionCommand is equal to "+" then, we need to
            // perform addition .
            // so first we store the first Value to firstValue String calling
            // the getText() method and then
            // clear the display area for next value and make the pluz boolean
            // type true so that we can perform addition and make the dotCheck
            // variable false so that second value can contain dot
            firstValue = displayField.getText();
            displayField.setText("");
            pluz = true;
            subs = false;
            divide = false;
            multiply = false;
            dotCheck = false;

        } else if (e.getActionCommand().endsWith("-")) {
            // Same thing have done here as before in the addition
            firstValue = displayField.getText();
            displayField.setText("");
            subs = true;
            pluz = false;
            divide = false;
            multiply = false;
            dotCheck = false;

        } else if (e.getActionCommand().endsWith("*")) {
            // Same thing have done here as before in the addition
            firstValue = displayField.getText();
            displayField.setText("");
            multiply = true;
            pluz = false;
            subs = false;
            divide = false;
            dotCheck = false;

        } else if (e.getActionCommand().endsWith("/")) {
            // Same thing have done here as before in the addition
            firstValue = displayField.getText();
            displayField.setText("");
            divide = true;
            dotCheck = false;
            pluz = false;
            subs = false;
            multiply = false;
        } else if (e.getActionCommand().endsWith("=")) {
            // here we store the second value in the SecondValue String calling
            // the getText() method
            Secondvalue = displayField.getText();

            // here I've done some complex operation of java
            // if pluz flag is true then, we fist call the add() method from the
            // CalculatorLogig class
            // the method takes two variable that is double. but our value is
            // String type. so we need to parse it in double.
            // we call the method stringToDouble() from my CalculatorLogig
            // class. it takes a string parameter and return double
            // so now we get the result of add() method. now we need to display
            // the result in our displayField.
            // our value is in double. so we need to make it String type. So
            // here we called String.valueOf() method which is a static method
            // of String class.
            // it takes double parameter and returns String.
            // lastly we display the result in the display area by calling
            // setText() method from the JTextField class.

            // we have done the same things for the rest of the operation

            if (pluz) {
                displayField.setText(String.valueOf((calLogic.add(calLogic
                        .stringToDouble(firstValue), calLogic
                        .stringToDouble(Secondvalue)))));
            } else if (subs) {
                displayField.setText(String.valueOf((calLogic.substruct(
                        calLogic.stringToDouble(firstValue), calLogic
                                .stringToDouble(Secondvalue)))));
            } else if (divide) {
                displayField.setText(String.valueOf((calLogic.divide(calLogic
                        .stringToDouble(firstValue), calLogic
                        .stringToDouble(Secondvalue)))));
            } else if (multiply) {
                displayField.setText(String.valueOf((calLogic.multiply(calLogic
                        .stringToDouble(firstValue), calLogic
                        .stringToDouble(Secondvalue)))));
            }
        } else if (e.getActionCommand().endsWith("Clear")) {
            // if clear button press, it clears the displayFields
            displayField.setText("");
        }
    }

    // ==================================================================//
    /*****************************************************************
    * **********main method**************************************** *
    *****************************************************************/
    public static void main(String[] args) throws ClassNotFoundException,
            InstantiationException, IllegalAccessException,
            UnsupportedLookAndFeelException {
        // here we use the system look and feel.. as Im in ubuntu 10.04, I get
        // its look and feel
        // if you are in windows, you we'll get the windows look and feel
        UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());

        CalcGui calcGui = new CalcGui();// Finally we instantiate the CalcGui
        // class/
        calcGui.setSize(300, 300); // here we define the size of our frame.
        calcGui.setVisible(true); // here we make the interface visible
        calcGui.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); // set default
        // close
        // operation
        // ....
        calcGui.setResizable(false); // setResizable(false) is used so that, our
        // gui can't be resizable
    }
}


and here is the output of the program...

Simple Calculator In Java Simplecalculator

You can get the source code from HERE


Last edited by bit0112-rokon on Fri Jun 18, 2010 7:14 am; edited 4 times in total (Reason for editing : Source code link added)
BIT0112-Rokon
BIT0112-Rokon
Programmer
Programmer

Course(s) :
  • BIT

Blood Group : O+
Posts : 673
Points : 1269

http://blog.codexplo.org

Back to top Go down

Simple Calculator In Java Empty Re: Simple Calculator In Java

Post by BIT0129-Tabassum Wed Jun 09, 2010 1:10 am

Nice one!
BIT0129-Tabassum
BIT0129-Tabassum
Global Moderator
Global Moderator

Course(s) :
  • BIT

Blood Group : A+
Posts : 1496
Points : 2298

http://probe-tabassum.blogspot.com

Back to top Go down

Simple Calculator In Java Empty Re: Simple Calculator In Java

Post by BIT0122-Amit Sat Apr 30, 2011 12:08 am

This is now one of the top ten viewed topic of IITDU Forum. Clapping
BIT0122-Amit
BIT0122-Amit
Founder
Founder

Course(s) :
  • BIT

Blood Group : O+
Posts : 4187
Points : 6605

https://iitdu.forumotion.com

Back to top Go down

Simple Calculator In Java Empty Re: Simple Calculator In Java

Post by BIT0112-Rokon Sat Apr 30, 2011 12:13 am

wooww... even in my blog, its in the top viewed list. SmileSmile
BIT0112-Rokon
BIT0112-Rokon
Programmer
Programmer

Course(s) :
  • BIT

Blood Group : O+
Posts : 673
Points : 1269

http://blog.codexplo.org

Back to top Go down

Simple Calculator In Java Empty Re: Simple Calculator In Java

Post by Sponsored content


Sponsored content


Back to top Go down

Back to top

- Similar topics

 
Permissions in this forum:
You cannot reply to topics in this forum