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

Java 8 streams Explained in 5 minutes

In my previous article I explained Java 8 Lambda Expression and how easy it is to use. In this article, we will take a...
Ernest Duodu
1 min read

What is the difference between Java and JavaFX?

In my last article I explained the difference between HTML5 and SVG. Since then, another request has been for a simple answer to the...
Mark Stephens
1 min read

Java 8 Lambda Expression Explained in 5 minutes

At IDR Solutions I work on the development of our Java Developer libraries (a Java PDF Viewer and SDK, PDF to HTML5 converter and a Java ImageIO replacement). We...
Ernest Duodu
1 min read

Improving Image Output Performance in Java

A common complaint from Java developers when using ImageIO in Java is that it is both slow to write out images, and that the...
Leon Atherton
1 min read

Another Way to Listen for Object Changes in JavaFX

At IDRSolutions we use JavaFX for several display modes in our Java PDF Viewer. The Problem. We recently encountered an issue when coding in...
Nathan Howard
1 min read