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

Author: Noel Kamphoa

This author has written 151 articles
Read more about the article How To Enable Preview Features in Java

How To Enable Preview Features in Java

  • Post author:Noel Kamphoa
  • Post published:April 23, 2025
  • Post category:Java Miscellaneous/Core Java Tutorials

Learn how to enable preview features in Java using the command line, IntelliJ IDEA, and Maven. Includes setup tips and best practices.

Continue ReadingHow To Enable Preview Features in Java
Read more about the article Local Variable Type Inference in Java

Local Variable Type Inference in Java

  • Post author:Noel Kamphoa
  • Post published:April 12, 2025
  • Post category:Classes and Objects/Java Entry Level/Core Java Tutorials

Learn how to use Java’s var keyword with local variable type inference—best practices, pitfalls, and examples for cleaner, concise code.

Continue ReadingLocal Variable Type Inference in Java
Read more about the article Enum Type In Java

Enum Type In Java

  • Post author:Noel Kamphoa
  • Post published:April 5, 2025
  • Post category:Classes and Objects/Java Entry Level/Core Java Tutorials

Learn how to use the enum type in Java effectively with examples on declaration, constructors, interfaces, and switch expressions

Continue ReadingEnum Type In Java
Read more about the article Class and Object In Java

Class and Object In Java

  • Post author:Noel Kamphoa
  • Post published:April 3, 2025
  • Post category:Classes and Objects/Java Entry Level/Core Java Tutorials

Understand the concept of class and object in Java. Learn how to define classes and create objects with practical examples

Continue ReadingClass and Object In Java
Read more about the article Formatting Messages In Java

Formatting Messages In Java

  • Post author:Noel Kamphoa
  • Post published:March 29, 2025
  • Post category:Java Entry Level/Text, Date, Time, and Numeric Objects/Core Java Tutorials

Learn how to format messages in Java using MessageFormat, ChoiceFormat, and ResourceBundle for dynamic and localized text handling.

Continue ReadingFormatting Messages In Java
Read more about the article Formatting Numbers In Java

Formatting Numbers In Java

  • Post author:Noel Kamphoa
  • Post published:March 17, 2025
  • Post category:Java Entry Level/Text, Date, Time, and Numeric Objects/Core Java Tutorials

Learn how to format numbers in Java using NumberFormat and DecimalFormat, including currency, percentages, and custom symbols.

Continue ReadingFormatting Numbers In Java
Read more about the article Locale Class In Java

Locale Class In Java

  • Post author:Noel Kamphoa
  • Post published:March 8, 2025
  • Post category:Java Entry Level/Text, Date, Time, and Numeric Objects/Core Java Tutorials

Learn how to use the Locale class in Java to manage language, region, and cultural settings for seamless internationalization and localization

Continue ReadingLocale Class In Java
Read more about the article ResourceBundle Class In Java

ResourceBundle Class In Java

  • Post author:Noel Kamphoa
  • Post published:March 8, 2025
  • Post category:Text, Date, Time, and Numeric Objects/Core Java Tutorials/Java Entry Level

Learn how to use ResourceBundle in Java to manage multilingual messages, support localization, and enhance internationalization in your apps

Continue ReadingResourceBundle Class In Java
Read more about the article AtomicInteger Class In Java

AtomicInteger Class In Java

  • Post author:Noel Kamphoa
  • Post published:February 1, 2025
  • Post category:Core Java Tutorials/Java Entry Level/Text, Date, Time, and Numeric Objects

Learn about Java's AtomicInteger class, its methods, and how it ensures thread-safe operations without locks for high-performance concurrency.

Continue ReadingAtomicInteger Class In Java
Read more about the article BigInteger Class In Java

BigInteger Class In Java

  • Post author:Noel Kamphoa
  • Post published:February 1, 2025
  • Post category:Core Java Tutorials/Java Entry Level/Text, Date, Time, and Numeric Objects

Learn about Java's BigInteger class, its methods, and how it handles arbitrarily large integers for high-precision mathematical computations.

Continue ReadingBigInteger Class In Java
  • Go to the previous page
  • 1
  • …
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • …
  • 16
  • Go to the next page

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 ·
20h

https://nkamphoa.com/working-with-filesystems-in-java/

Reply on Twitter 2018580464206852302 Retweet on Twitter 2018580464206852302 Like on Twitter 2018580464206852302 Twitter 2018580464206852302
nkamphoa Noel KAMPHOA @nkamphoa ·
21h

Comment your take
#Java #InterviewPrep #BackEnd #Coding #Programming

Reply on Twitter 2018565300615090495 Retweet on Twitter 2018565300615090495 Like on Twitter 2018565300615090495 Twitter 2018565300615090495
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