Learn Java

Running Your First Java Application

Staying Aware of New Features

Getting to Know the Language

Mastering the API

  • The Collections Framework

    Getting to know the Collections Framework to store and retrieve data in collections and hashmaps.

  • The Stream API

    Process your in-memory data with Java streams and collectors. Process them faster with parallel streams.

  • The Java I/O API

    Access external resources with the Java Input / Output API.

  • The Date Time API

    Covers the Date Time API added to the JDK 8, including the core concepts and classes.

  • Regular Expressions

    Provides a general overview of regular expressions. It also introduces the core classes that comprise this API.

  • Fundamentals of Security using JDK Libraries

    Provides a general overview of security APIs. It also introduces the core components part of this API.

  • Virtual Threads

    Virtual Threads: What, Why, and How?

  • Introduction to Java Reflection

    Java reflection allows an object to look in the mirror and discover what fields, methods, and constructors it has. We can read and write fields, invoke methods, and even create new objects by calling the constructors.

Organizing your Application

  • Modules

    Understand how the module system shapes the JDK and how you can use it to make your code base more maintainable.

  • Creating Runtime and Application Images with JLink

    Learn how to use the command line tool jlink to create custom-made runtime images or self-contained application images.

Getting to know the JVM

Rich Client Applications

More Resources