Skip to content

Kloudly Academy

  • Home
  • Learning Paths
    • Java SE Path
      • Level 1: Beginner (Getting Started)Start your Java journey here. Beginner tutorials to set up, write your first code, and understand the basics of Java programming.
      • Level 2: Intermediate (Object-Oriented Foundations)Level 2 builds your Java OOP skills. Learn classes, objects, inheritance, and polymorphism to create structured, reusable applications.
      • Level 3: Advanced (Deep Dive & Modern Java)Level 3 explores modern Java. Learn streams, lambdas, modules, and advanced APIs to write efficient, scalable, and professional code.
  • Java
    • Start Here
      • Entry-level Tutorials
    • Core Java
      • Basic SyntaxLearn Java’s basic syntax: variables, operators, and control flow. Build a strong foundation to write and understand simple programs.
      • Core OOP PrinciplesLearn the four pillars of OOP in Java. Understand encapsulation, inheritance, polymorphism, and abstraction with simple examples.
      • Key Java APIsDive into Java Strings. Explore immutability, StringBuilder, and StringBuffer to manage text efficiently and avoid common pitfalls.
      • ExceptionsLearn Java exceptions and error handling. Use try-catch, finally, and throw to build reliable, resilient, and maintainable programs.
      • Common Java Exceptions
      • Collections FrameworkMaster the Java Collections Framework. Learn Lists, Sets, Maps, and utilities to store, organize, and manipulate data effectively.
    • Java SE LTS Features
      • Java 21 New Features
      • Java 17 New Features
      • Java 11 New Features
      • Java 8 New Features
    • All Java Tutorials
  • Spring
    • All Spring TutorialsIn this series, you will find all the articles related to the Spring ecosystem, including Spring Framework and Spring Boot.
  • DevOps
    • All DevOps Tutorials
  • Flashcards
    • Java FlashcardsAll flashcards about the Core Java SE
    • All Flashcards
  • About
  • Resources
  • Toggle website search
Menu Close
  • Home
  • Learning Paths
    • Java SE Path
      • Level 1: Beginner (Getting Started)
      • Level 2: Intermediate (Object-Oriented Foundations)
      • Level 3: Advanced (Deep Dive & Modern Java)
  • Java
    • Start Here
      • Entry-level Tutorials
    • Core Java
      • Basic Syntax
      • Core OOP Principles
      • Key Java APIs
      • Exceptions
      • Common Java Exceptions
      • Collections Framework
    • Java SE LTS Features
      • Java 21 New Features
      • Java 17 New Features
      • Java 11 New Features
      • Java 8 New Features
    • All Java Tutorials
  • Spring
    • All Spring Tutorials
  • DevOps
    • All DevOps Tutorials
  • Flashcards
    • Java Flashcards
    • All Flashcards
  • About
  • Resources
  • Toggle website search
  • Home
  • Learning Paths
    • Java SE Path
      • Level 1: Beginner (Getting Started)
      • Level 2: Intermediate (Object-Oriented Foundations)
      • Level 3: Advanced (Deep Dive & Modern Java)
  • Java
    • Start Here
      • Entry-level Tutorials
    • Core Java
      • Basic Syntax
      • Core OOP Principles
      • Key Java APIs
      • Exceptions
      • Common Java Exceptions
      • Collections Framework
    • Java SE LTS Features
      • Java 21 New Features
      • Java 17 New Features
      • Java 11 New Features
      • Java 8 New Features
    • All Java Tutorials
  • Spring
    • All Spring Tutorials
  • DevOps
    • All DevOps Tutorials
  • Flashcards
    • Java Flashcards
    • All Flashcards
  • About
  • Resources
  • Home
  • Learning Paths
    • Java SE Path
      • Level 1: Beginner (Getting Started)
      • Level 2: Intermediate (Object-Oriented Foundations)
      • Level 3: Advanced (Deep Dive & Modern Java)
  • Java
    • Start Here
      • Entry-level Tutorials
    • Core Java
      • Basic Syntax
      • Core OOP Principles
      • Key Java APIs
      • Exceptions
      • Common Java Exceptions
      • Collections Framework
    • Java SE LTS Features
      • Java 21 New Features
      • Java 17 New Features
      • Java 11 New Features
      • Java 8 New Features
    • All Java Tutorials
  • Spring
    • All Spring Tutorials
  • DevOps
    • All DevOps Tutorials
  • Flashcards
    • Java Flashcards
    • All Flashcards
  • About
  • Resources
  • Toggle website search
  • Home
  • Learning Paths
    • Java SE Path
      • Level 1: Beginner (Getting Started)
      • Level 2: Intermediate (Object-Oriented Foundations)
      • Level 3: Advanced (Deep Dive & Modern Java)
  • Java
    • Start Here
      • Entry-level Tutorials
    • Core Java
      • Basic Syntax
      • Core OOP Principles
      • Key Java APIs
      • Exceptions
      • Common Java Exceptions
      • Collections Framework
    • Java SE LTS Features
      • Java 21 New Features
      • Java 17 New Features
      • Java 11 New Features
      • Java 8 New Features
    • All Java Tutorials
  • Spring
    • All Spring Tutorials
  • DevOps
    • All DevOps Tutorials
  • Flashcards
    • Java Flashcards
    • All Flashcards
  • About
  • Resources

Streams

Read more about the article Java IO API: What You Need To Know

Java IO API: What You Need To Know

  • Post author:Noel Kamphoa
  • Post published:January 10, 2026
  • Post category:Core Java Tutorials/Java Practitioner/Java IO API

Learn how the Java IO API simplifies file interaction. Get insights on data flow, stream-based operations, and more.

Continue ReadingJava IO API: What You Need To Know
Read more about the article Spliterator Explained: The Engine Behind Streams

Spliterator Explained: The Engine Behind Streams

  • Post author:Noel Kamphoa
  • Post published:January 6, 2026
  • Post category:Core Java Tutorials/Java Stream API/Java Practitioner

Understand the spliterator in Java streams: learn how it enhances performance and enables effective parallel execution.

Continue ReadingSpliterator Explained: The Engine Behind Streams
Read more about the article Parallel Stream Processing: Performance and Risks

Parallel Stream Processing: Performance and Risks

  • Post author:Noel Kamphoa
  • Post published:January 3, 2026
  • Post category:Core Java Tutorials/Java Stream API/Java Practitioner

Explore the advantages of parallel stream and how it enhances performance through concurrent processing with minimal code changes.

Continue ReadingParallel Stream Processing: Performance and Risks
Read more about the article Bi-Argument Functional Interfaces in the Stream API

Bi-Argument Functional Interfaces in the Stream API

  • Post author:Noel Kamphoa
  • Post published:December 30, 2025
  • Post category:Java Practitioner/Core Java Tutorials/Java Stream API

Learn how bi-argument functional interfaces enhance Java 8 streams, offering more context for efficient data manipulation.

Continue ReadingBi-Argument Functional Interfaces in the Stream API
Read more about the article Aggregating Stream Data Using the reduce Operation

Aggregating Stream Data Using the reduce Operation

  • Post author:Noel Kamphoa
  • Post published:December 30, 2025
  • Post category:Java Stream API/Java Practitioner/Core Java Tutorials

Learn about reduce operation in stream processing, including its variants and how to use it safely for parallel executions.

Continue ReadingAggregating Stream Data Using the reduce Operation
Read more about the article Stream Operations and Pipelines Explained

Stream Operations and Pipelines Explained

  • Post author:Noel Kamphoa
  • Post published:December 26, 2025
  • Post category:Java Practitioner/Core Java Tutorials/Java Stream API

Dive into stream operations and discover how to build effective pipelines to enhance your Java coding skills.

Continue ReadingStream Operations and Pipelines Explained
Read more about the article Java Stream API: What It Is (and What It Is Not)

Java Stream API: What It Is (and What It Is Not)

  • Post author:Noel Kamphoa
  • Post published:December 23, 2025
  • Post category:Core Java Tutorials/Java Stream API/Java Practitioner

Understand the Java Stream API and how it revolutionizes data processing in Java applications with a declarative style.

Continue ReadingJava Stream API: What It Is (and What It Is Not)
Read more about the article Creating and Consuming Streams in Java

Creating and Consuming Streams in Java

  • Post author:Noel Kamphoa
  • Post published:December 23, 2025
  • Post category:Java Practitioner/Core Java Tutorials/Java Stream API

Learn how to create streams in Java with our guide. Understand stream sources and terminal operations for effective usage.

Continue ReadingCreating and Consuming Streams in Java
Read more about the article Remove Array Duplicates: 5 Java Methods, Preserve Original Order

Remove Array Duplicates: 5 Java Methods, Preserve Original Order

  • Post author:Noel Kamphoa
  • Post published:January 21, 2024
  • Post category:Java Miscellaneous/Core Java Tutorials

Elevate your coding with 5 Java methods to remove array duplicates while preserving order. Optimize your arrays for maximum efficiency.

Continue ReadingRemove Array Duplicates: 5 Java Methods, Preserve Original Order

Tweets from @nkamphoa

Noel KAMPHOA Follow

#Java enthusiast ☕ | 10+ years coding wizard 🧙‍♂️ | #Blogging about Java at https://t.co/FUPJBD6fB1 | Start your own blog today https://t.co/LQej3RH51A

nkamphoa
nkamphoa Noel KAMPHOA @nkamphoa ·
7h

Explore solutions and best practices for handling UnsupportedOperationException in Java. Safeguard your code against unexpected operations.
https://nkamphoa.com/how-to-fix-unsupportedoperationexception-in-java/

Reply on Twitter 2014397814357282832 Retweet on Twitter 2014397814357282832 Like on Twitter 2014397814357282832 Twitter 2014397814357282832
nkamphoa Noel KAMPHOA @nkamphoa ·
10h

⚖️Your thoughts in the comments.
#Java #BackEnd #Programming #Coding

Reply on Twitter 2014352724209320090 Retweet on Twitter 2014352724209320090 Like on Twitter 2014352724209320090 Twitter 2014352724209320090
Load More
  • LinkedIn
  • Facebook
  • GitHub
  • Twitter

Categories

  • Arrays and Loops
  • AWS Tutorials
  • Classes and Objects
  • Collections
  • Core Java Tutorials
  • DevOps
  • DevOps Featured
  • Exception Handling, Logging and Debugging
  • Featured
  • Implement Inheritance and Use Records
  • Interfaces and Generics
  • Introduction to Java
  • Java Entry Level
  • Java Exceptions
  • Java Expert
  • Java IO API
  • Java LTS Series
  • Java Miscellaneous
  • Java Practitioner
  • Java Stream API
  • Nested Classes and Lambdas Expressions
  • Observability
  • Primitive types, Operators, and Flow control statements
  • Spring Tutorials
  • Text, Date, Time, and Numeric Objects

Tutorials

  • Core Java Tutorials
  • Spring Tutorials
  • DevOps

Courses

  • Java Entry Level
  • Java Practitioner
  • Java Advanced
  • Java Expert

Tutorials

  • Core Java Tutorials
  • Spring Tutorials
  • DevOps

Courses

  • Java Entry Level
  • Java Practitioner
  • Java Advanced
  • Java Expert

Social Media

  • LinkedIn
  • Twitter
  • Facebook
  • Youtube

About

  • About Kloudly Academy
  • Privacy Policy
  • Terms of Service
  • About Kloudly Academy
  • Privacy Policy
  • Terms of Service
Copyright 2026 - by Noel Kamphoa