VOOZH about

URL: https://www.geeksforgeeks.org/java/pizza-shop-billing-system-using-java-swing/

⇱ Pizza Shop Billing System using Java Swing - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Pizza Shop Billing System using Java Swing

Last Updated : 15 Jul, 2025

Java is a fascinating programming language that provides its users with a plethora of features like OOP, platform independence, simplicity, GUI based programming, etc. One such feature is creating robust applications using the Swing toolkit provided by Java Foundation Classes. This can be used to create lightweight visual components for simple applications, such as EMI calculator, tax calculator, billing systems, record management systems, etc. This article aims to guide beginners on how to create a GUI based java application using Java Swing toolkit.

Consider a scenario of a local pizza shop that is shifting from its traditional approach of manually calculating bills to an automatic billing system. According to their requirements, the customer needs to choose two things 

  1. The pizza base type
  2. Choice of toppings

Based on these, the total amount is calculated and printed. A pizza can have more than 1 topping but can have only one type of crust at a time. Below are the pricing details to create the application.

Pan PizzaStuffedRegularOnionCheeseTomatoBaby Corn
Rs. 200Rs. 300Rs. 150Rs. 60Rs. 30Rs. 40Rs. 50

Advantage of Java swing over plain application 

  1. No need to handle large chunks of code, therefore decreasing the complexity of programming.
  2. Provides GUI(graphical user interface) based editor for easier understanding


Netbeans is used to create GUI applications since it's a well crafted open-source IDE that provides features of a Component inspector, Drag-and-Drop of widgets, Debugger, Object browser, etc. 

Steps to create the Pizza Shop Billing System:

Follow the steps to create the application.

  • Create a new Java application by clicking on New Project -> Java -> Java Application and give a suitable project name. Eg: GeeksForGeeks and click Finish. 


 

👁 Image
Click on New Project
  • Now create a new file by going to the File option on the menu bar, then New File-> Swing GUI Forms -> JFrame Form,  and give a suitable file name. Eg. PizzaBill.java and click Finish.
     
👁 Image
  • After successful file creation, you will now be presented with the following screen. The 3 important parts of this window are: 
    1. Design: This is the area where we will create the design/template of our application.
    2. Source: This is where the logic code of the program is written.
    3. Palette: This component contains all the widgets which we need to drag and drop on the design area.
  • Now before coding and dragging out the widgets from the palette, create a rough design of what exactly is needed in the application. This gives the programmer a better understanding of what exactly is expected from the problem statement. Java Swing contains many components or controls but it is necessary to understand what is needed by our application. As per the rough diagram below, The application should display information that cannot be edited. For example Company name, Menu options, etc. This is where we use Jlabel (java Label control). Now as per user choice, information needs to be fed into the system, so we use a JTextField control. According to the problem, a pizza can have more than 1 topping but can have only one type of crust at a time. Hence, we use JCheckBox and JRadioButton controls respectively. Now, to group and hold all similar components like radio buttons and checkboxes, you can use JPanel. Lastly, we need a command/action button which is used to execute the program logic. This is done with the help of JButton.
👁 Image
Rough design of the expected application
  • Now from the palette situated at the right-hand side of the window, start dragging the toolkit widgets as per the above diagram.
👁 Image
Drag Components from palette to design area
  • After all the components are moved, your design should look like this.
👁 Image
Pizza Billing System design
  • Let us now quickly go through the usage of each component in the program tabulated below. Refer to the corresponding object numbers from the previous image.
No.Object TypeObject NameDescription
1LabeljLabel1: Bistro Pizza Bill CalculatorDescribes title of the application
jLabel2: Order No.Defines order number
jLabel3: Customer NameDefines  customer name
jLabel4: QuantityDefines the quantity of pizza
jLabel5: RateDefines rate of each pizza type
jLabel6: AmountDefines total payable amount
jLabel7: Cost of ToppingsDefines total cost of toppings
2TextBoxjTextField1Variable 1
jTextField2Variable 2
jTextField3Variable 3
jTextField4Variable 4
jTextField5Variable 5
jTextField6Variable 6
3PaneljPanel1Container to hold components
jPanel2Container to hold components
4RadioButtonsjRadioButton1Choice of Pan Pizza
jRadioButton2Choice of Stuffed Crust
jRadioButton3Choice of Regular Pizza
5CheckBoxjCheckBox1Option for Onion 
jCheckBox2Option for Cheese
jCheckBox3Option for Tomato
jCheckBox4Option for Baby Corn
6Command ButtonjButton1Generates bill
jButton2Clears content of all components
7TextArea (Optional)jTextArea1Displays customer related information and billing details
  • Now to type the code, double-click on jButton1, you will be directed to the source tab. Here type in the following code.
👁 Image
Type in the code under JButton1 Action Button

 
 

  • Now to clear all textfields, textareas, radiobuttons, and checkboxes, write the following code under the jButton2 ActionPerformed option which can be achieved by clicking twice on Clear Button in the design area.


 

 
 

  • This completes the creation of the application. Input necessary details and select Run File option from the drop-down menu.
👁 Image
Final output


 


Output: 
 


 


 

Comment