Java is a general-purpose, concurrent, class-based, object-oriented computer programming language that is specifically designed to have as few implementation dependencies as possible.
Developers can “write once, run anywhere” (WORA), meaning that code that runs on one platform does not need to be recompiled to run on another. Java applications are typically compiled to bytecode (class file) that can run on any Java virtual machine (JVM) regardless of computer architecture.

Java

How to find deprecated methods in Java

A Java deprecated method is one that should not be used because it is going to be removed (and often there is a better,...
Mark Stephens
1 min read

How to create a module-info file with JDeps

In this article, I am going to work through adding modules support to an existing Java application. I am using our JPedal (our Java...
Mark Stephens
2 min read

Reimplementation the Legacy Socket API in Java 13

The Java Socket API has been with us for over 20 years now. In that time it has been maintained and updated, but eventually,...
Kieran France
2 min read

How to improve switch statements after Java 13

Improvements to the use of switch statements was first previewed in Java 12 with JEP-325. Some JEPs are released as previews to allow the...
Kieran France
3 min read

Text Blocks preview in Java 13

This month we are focusing on Java 13 new features you should know about. We’ve already written about what is new in Java 13...
Sam Howard
2 min read