Udemy
    •  
    •  
    •  
    •  
    •  
    •  
    •  
    •  
Turn what you know into an opportunity and reach millions around the world.
Learn More
Your cart is empty.
Keep shopping
Java Swing Bootcamp | Build Java GUI Applications With Swing
Rating: 3.9 out of 5(17 ratings)
2,786 students

Java Swing Bootcamp | Build Java GUI Applications With Swing

Master Java programming by building Java real world GUI applications using Java swing technology for Java programmers
Created byEmenwa Global
Last updated 3/2026
English
English [Auto],

What you'll learn

  • How to setup a window builder
  • How to build your first Java Swing application
  • How to build a simple calculator application using Java swing technology
  • How to build a simple clock application using Java swing technology
  • How to build advance calculator project from scratch
  • How to build a complete Hotel Management System application from scratch using Java swing technology

Course content

1 section26 lectures4h 35m total length
  • Setup of window builder7:45

    Learn how to install the window builder in Eclipse by using Help > Install New Software, selecting Swing Designer, and restarting Eclipse to enable Swing GUI development.

  • Your first Java GUI project19:23

    Create your first Java GUI project using design and source views to add a button and text field. Wire an action to show a message dialogue on click.

  • Ask Questions, Get Support & Achieve Your Dream!0:49
  • Simple Calculations in Java GUI15:39

    Develop a practical Java graphical user interface using Swing for simple addition and subtraction, featuring input text fields, a results display, and robust integer validation with event-driven actions.

  • Simple Clock in Java GUI16:19

    Build a simple date and time clock in a Java Swing GUI, displaying current time and date with a digital clock and updating every second.

  • Introduction to Advance calculator project2:22

    Build a Java Swing calculator from basic to advanced, implementing decimal precision, backspace functionality, and chained operations, while following a step-by-step environment setup.

  • Simple Calculator Project (Part 1)19:43

    Design view and build a simple calculator GUI in Java Swing using absolute layout, a display text field, and digit buttons for operations like addition, subtraction, multiplication, and division.

  • Activate the calculator buttons8:27

    Activate the calculator's numeric buttons by wiring action handlers to update the text display with pressed digits, including the dot, and prepare for adding operational keys later.

  • Activate the calculator operational keys14:07

    Activate the calculator operational keys and backspace, configure display handling, and implement plus, minus, multiply, divide, and equals logic while clarifying global versus local variables.

  • Activation of operational keys (cont.)11:44

    Activate operational keys for plus, minus, multiply, divide, and equals; update the text display and verify calculator results in a standalone Java GUI project.

  • Introduction to Hotel Management System8:16

    Build a complete hotel management system desktop app in Java Swing, with a menu bar, itemized orders, delivery options, room selection, currency converter, and receipts.

  • Getting started with Hotel management system11:29

    Create a hotel management system project in Java Swing, design the user interface in design view, adjust the layout and absolute levels, and tune fonts, borders, and menus.

  • How to add a menu to HMS14:36

    Learn to build a Java Swing menu bar for a hotel management system, add menus and dropdown items, customize properties, and implement currency conversion, total calculation, and an exit option.

  • Creating a calculator and receipt tab for HMS11:43

    Create a calculator and a receipt tab for the hotel management system, adjusting panels, fonts, and absolute layouts to ensure the two sections work together.

  • Design the menu, quantity and price tabs21:24

    Designs a Java Swing menu, quantity and price tabs by adding labeled fields, combo boxes for drinks, text fields for quantity, and price calculations with delivery and tax options.

  • Currency converter for HMS10:22

    Implement a currency converter panel in a Java Swing HMS project, with country selection, an amount input text field, and a convert result display plus submit and reset controls.

  • How to design the cost area11:27

    Design the cost area in a Java Swing GUI to display subtotal, tax, total, delivery, and room costs, and align and rename variables for clarity.

  • Change the fields variable names10:11

    This lecture demonstrates renaming fields and labels in a Java Swing GUI, updating text fields, combo boxes, and cost calculations for items like fried rice, chicken, and drinks.

  • Working on the calculator part of HMS5:44

    Assemble and test the HMS calculator in a new Java Swing project by updating variables, wiring numeric keys and backspace, copying components, and preparing for quantity and pricing features.

  • Activate the submit button23:02

    activate the submit button while stepping through drinks and meals, calculating drink price, meal total, delivery, and tax, and displaying the final total with three-decimal formatting.

  • Activate the Reset button8:45

    Activate the reset button to clear all inputs and restore the form to its default state, returning text fields and selections to their initial values.

  • Continue with the currency converter9:26

    Continue building the Java Swing currency converter by declaring exchange rates and converting input to the selected currency, with country selection and a reset button.

  • Continue with the Receipt tab4:30

    Learn to use the receipt tab to print receipts, calculate item totals and tax, and display the invoice for fried rice, chicken, and drinks.

  • Conclusion of the Hotel Management System project7:20

    Conclude the hotel management system project by adding a live clock, validating date-time display, and reviewing room pricing and receipts to reinforce Java Swing GUI skills.

  • Final lecture video0:44

    Celebrate completing the Java Swing bootcamp and becoming a better developer through Java programming and awesome projects.

  • Congratulations! Never Stop Learning...0:15

Requirements

  • This course requires the basic knowledge of Java programming to get started and follow along with practical examples

Description

Swing is a GUI widget toolkit for Java. It is part of Oracle's Java Foundation Classes (JFC) – an API for providing a graphical user interface (GUI) for Java programs.

Swing was developed to provide a more sophisticated set of GUI components than the earlier Abstract Window Toolkit (AWT). Swing provides a look and feel that emulates the look and feel of several platforms, and also supports a pluggable look and feel that allows applications to have a look and feel unrelated to the underlying platform. It has more powerful and flexible components than AWT. In addition to familiar components such as buttons, check boxes and labels, Swing provides several advanced components such as tabbed panel, scroll panes, trees, tables, and lists.

Unlike AWT components, Swing components are not implemented by platform-specific code. Instead, they are written entirely in Java and therefore are platform-independent.

Swing introduced a mechanism that allowed the look and feel of every component in an application to be altered without making substantial changes to the application code. The introduction of support for a pluggable look and feel allows Swing components to emulate the appearance of native components while still retaining the benefits of platform independence. Originally distributed as a separately downloadable library, Swing has been included as part of the Java Standard Edition since release 1.2. The Swing classes and components are contained in the javax.swing package hierarchy.

In this course, we covered the following:

  1. How to setup window builder

  2. How to build your first Java Swing application

  3. How to build a simple calculator application using Java swing technology

  4. How to build a simple clock application using Java swing technology

  5. How to build advance calculator project  from scratch

  6. How to build a complete Hotel Management System application from scratch using Java swing technology

Who this course is for:

  • Anyone who wants to level up his/her Java programming skill by building real world applications using Java swing technology