Skip Navigation

Online help Learning at your own pace, or facilitated by an instructor

Intermediate Java Programming

Instructor

ed2go Faculty

See Course Dates

What You Will Learn

Deepen your understanding of the Java programming language, and start writing programs that are more sophisticated and professional. Learn how to save data permanently on a disk by writing it to a sequential data file. See how to read the file to get the data back and process it. Organize information using multiple classes in Java's class hierarchy and inheritance. Explore some of the hundreds of classes that are built into the Java language. Find out how to create GUI applications in Java using tools like windows, menus, buttons, text boxes, check boxes, scroll bars, and other GUI tools.

Over the duration of this course, you'll build several complete applications that combine these concepts. You'll also use the knowledge you gain to solve programming problems included with the lessons. The problems are designed to help you master all of these important principles.

Intermediate Java Programming
Course Dates

Online help Learning at your own pace, or facilitated by an instructor

$189.00

Intermediate Java Programming

8/13/2025 - 10/3/2025
99 Seats Open
9/17/2025 - 11/7/2025
99 Seats Open
10/15/2025 - 12/5/2025
99 Seats Open

Selected Course

Dates: 9/17/2025 - 11/7/2025

Course type: Web

Times:

Location: Online Campus Map

Contact Hours: 24.0

Other Details

Course Code: WEB-91620250917

Category: Web

Contact Hours: 24.0

Format: Online

Schedule Details:

After registering for this course, you can come back to the catalog to register for more courses.

Issues with registering? Please contact us at CERegistration@jccc.edu or call 913-469-2323.

Similar Courses

Web image Introduction to Java Programming
Online help Learning at your own pace, or facilitated by an instructor
Introduction to Java Programming Session start date: Sep 17
contact hours $189.00
Web image Javascript in the Browser Context
Live Online help Real-time discussions with your instructor and fellow students via technology
Javascript in the Browser Context Session start date: Aug 26
36.0 contact hours $1,599.00
Web image Introduction to C# Programming
Online help Learning at your own pace, or facilitated by an instructor
Introduction to C# Programming Session start date: Sep 17
24.0 contact hours $189.00
Web image Intermediate WordPress Websites
Online help Learning at your own pace, or facilitated by an instructor
Intermediate WordPress Websites Session start date: Sep 17
24.0 contact hours $189.00
Data Management image Introduction to Python Programming
Live Online help Real-time discussions with your instructor and fellow students via technology
Introduction to Python Programming Session start date: Aug 26
18.0 contact hours $1,995.00
Data Management image Introduction to Python Programming
Live Online help Real-time discussions with your instructor and fellow students via technology
Introduction to Python Programming Session start date: Aug 26
21.0 contact hours $1,495.00
Data Management image Advanced Python Programming
Live Online help Real-time discussions with your instructor and fellow students via technology
Advanced Python Programming Session start date: Oct 14
21.0 contact hours $1,995.00
Microsoft Office image Intermediate Microsoft Excel 2019/Office 365
Online help Learning at your own pace, or facilitated by an instructor
Intermediate Microsoft Excel 2019/Office 365 Session start date: Oct 15
24.0 contact hours $179.00
ESL Advanced and Professional image ELL Grammar Development
In Person help Traditional, instructor-led and offered in a classroom at JCCC
ELL Grammar Development Session start date: Aug 19
20.0 contact hours $139.00
Microsoft Office image Excel Intermediate
In Person help Traditional, instructor-led and offered in a classroom at JCCC
Excel Intermediate Session start date: Sep 19
7.0 contact hours $199.00
Data Management image Intermediate SQL
Online help Learning at your own pace, or facilitated by an instructor
Intermediate SQL Session start date: Sep 17
24.0 contact hours $189.00
Arts and Crafts image Crochet Beyond the Basics
In Person help Traditional, instructor-led and offered in a classroom at JCCC
Crochet Beyond the Basics Session start date: Sep 15
12.0 contact hours $99.00
QuickBooks image Intermediate QuickBooks Online
Online help Learning at your own pace, or facilitated by an instructor
Intermediate QuickBooks Online Session start date: Sep 17
24.0 contact hours $159.00
Data Management image Python Programming for Data Analysis
Live Online help Real-time discussions with your instructor and fellow students via technology
Python Programming for Data Analysis Session start date: Aug 25
14.0 contact hours $1,295.00
Web image Programming in C# and .NET
Live Online help Real-time discussions with your instructor and fellow students via technology
Programming in C# and .NET Session start date: Nov 3
30.0 contact hours $2,995.00
Arts and Crafts image The Wonder of Watercolor: Beginner to Intermediate
In Person help Traditional, instructor-led and offered in a classroom at JCCC
The Wonder of Watercolor: Beginner to Intermediate Session start date: Sep 8
24.0 contact hours $179.00
Networking image Linux Fundamentals
Live Online help Real-time discussions with your instructor and fellow students via technology
Linux Fundamentals Session start date: Sep 8
30.0 contact hours $2,995.00
Project Management image Agile Certified Practitioner (PMI-ACP)® Bootcamp
Live Online help Real-time discussions with your instructor and fellow students via technology
Agile Certified Practitioner (PMI-ACP)® Bootcamp Session start date: Nov 17
28.0 contact hours $1,995.00
Adult Education image Grammar for ESL
Online help Learning at your own pace, or facilitated by an instructor
Grammar for ESL Session start date: Sep 17
24.0 contact hours $169.00
 
Close Modal Window

Online Registration Temporarily Down

Please contact us at ceregistration@jccc.edu or call 913-469-2323 to register now or please visit us later.

Close
Close Modal Window

Introduction and Java Review

Now that you've done some Java programming, you may be wondering, "What's next?" In this first lesson, you'll get a taste of what you'll learn before the course is over. You'll first do a short review of the Java skills you should already have—this will get your wheels turning if you haven't worked with Java in a while! You'll also find out about a few different development environments you can use to create and run your own Java programs.

Arrays, Loops, and Using Multiple Classes

The array is one of the most commonly used data structures in any programming language. This lesson will go over how arrays work, including their internal structure. You'll find out how to create arrays, how to store and access data in them, and how to process them efficiently using loops. Along the way, you'll also learn the difference between a class that's a complete program and one that isn't. You'll see how to write classes that use other classes in their processing, which is helpful when you're working with a lot of information.

File Input and Output

Computers can do an incredible amount of work, but it's often all for nothing if you can't save the results after the program finishes. That's where data files come into play. This lesson shows you how to read and write computer data files using Java. That process takes place many times every day in all kinds of programs, so it's a very useful and important one to understand.

Inheritance and Class Hierarchies

Have you ever wondered exactly what the big deal is about object-oriented programming (OOP)? Why does is matter whether a language is object-oriented or not? In this lesson, you'll look at exactly what object orientation means to Java through the topic of inheritance. One of the primary features of an OOP language is how its classes inherit features from other classes in the class hierarchy. You'll find out how Java's class hierarchy is organized, and you'll learn how to use the different types of classes (interfaces, abstract classes, and concrete classes) to your advantage.

Standalone GUI Applications

You'll explore Java's GUI tools in this lesson. Nearly every modern program has a graphical user interface, or GUI. That just means the program appears in a window with menus, icons, buttons, and so on. Java has hundreds of GUI tools that you can use to build your own applications to run in any windowed operating system that supports Java (Windows, Linux, and macOS, among others). You'll learn how to set up a standalone application using Java's GUI tools, including labels, buttons, dialogs, and more.

Layouts and Multiple GUI Components

In this lesson, you'll continue learning about Java's GUI capabilities. You'll explore several ways that Java can organize multiple GUI components in a window and find out how to split windows into smaller areas called panels, which you can then organize in different ways. You'll see how to set up Java's scroll bars in a window or part of a window so that users can scroll up, down, left, and right through the display.

GUI Menus

What do almost all modern-day programs have in common? They have menus. Menus are probably the best-known and most widely used GUI programming feature. In this lesson, you'll learn how to create menus using Java's menu bar, menu, and menu item components. You'll be able to create as many menus in an application as you need, each with all the menu items and submenus necessary to perform the task you're programming.

A Working GUI Application: Part 1

By this time, you'll have spent three lessons learning about different Java GUI programming techniques and tools. In this lesson, you'll learn how to put the pieces together into a complete, reasonably complex Java application. You'll see how to combine menu options, graphics, check boxes, radio buttons, and text entry fields into a windowed program that can actually perform a useful task: It allows someone to order a pizza! (How much more useful can it get?)

A Working GUI Application: Part 2

In this lesson, you'll take what you started before, where you learned how to design and build a GUI interface to order a pizza, and make it functional. You already have all the GUI components displayed nicely in the window, so now you'll learn how to make your program gather all the data from the different components in the window, and then put that information together into a useful pizza order. (Unfortunately, it won't actually deliver the pizza, though.) You'll get an idea of what you can create with Java's GUI capabilities.

Java Collections: Part 1

Most programmers don't write computer programs to deal with individual da

Close Modal Window

Online help Learning at your own pace, or facilitated by an instructor

Intermediate Java Programming

DATE TIME DAY PRICE AVAILABILITY LOCATION  
8/13/2025 - 10/3/2025 $189.00 99 Seats Open Online Campus Map Register
9/17/2025 - 11/7/2025 $189.00 99 Seats Open Online Campus Map Register
10/15/2025 - 12/5/2025 $189.00 99 Seats Open Online Campus Map Register
Close Modal Window

Online help Learning at your own pace, or facilitated by an instructor

$189.00

Intermediate Java Programming

8/13/2025 - 10/3/2025
99 Seats Open
9/17/2025 - 11/7/2025
99 Seats Open
10/15/2025 - 12/5/2025
99 Seats Open

Selected Course

Dates: 9/17/2025 - 11/7/2025

Course type: Web

Times:

Location: Online Campus Map

Contact Hours: 24.0

Other Details

Course Code: WEB-91620250917

Category: Web

Contact Hours: 24.0

Format: Online

Schedule Details:

After registering for this course, you can come back to the catalog to register for more courses.

Issues with registering? Please contact us at CERegistration@jccc.edu or call 913-469-2323.