227 Results for:JVM

  • Sort by: 

Improving Java performance by minimizing Virtual Machine (JVM) latency

01 May 2014

Users demand that their applications run fast, but working with Java bytecode presents optimization problems that other architectures do not encounter. Here we look at how to improve the performance of the Java ... Read More

How to tame Gradle dependency version management

By Joseph B. Ottinger 18 Oct 2023

Need to quickly and easily switch between versions of your dependencies at build time? Gradle's dependency catalogs are the answer. Here's how to use them. Read More

2023 Java roadmap for developers

By Cameron McKenzie 28 Feb 2023

This 2023 Java roadmap for developers will help guide your path as you build the skills required to go from a beginner programmer to an advanced software developer. Read More

How do I install Java on Ubuntu?

By Cameron McKenzie 01 Jun 2022

Here's the easiest way to install Java on Ubuntu with apt. Follow these steps and you'll get the JDK installed in no time, and be ready to use your Java on Ubuntu setup right away. Read More

The Performance Paradox of the JVM: Why More Hardware Means More Failures

By Cameron McKenzie 28 Jun 2010

Administrators are seeing their JVMs not crash, but pause, and just stop responding to requests, as though they were a 400 meter sprinter, stopping to catch their breath at the end of a race. Read More

The 7 benefits of Java

By Cameron McKenzie 03 Mar 2023

The 7 benefits of Java that Sun Microsystems bragged about in 1995 are just as relevant today as they were then. Here's a look at 7 Java benefits and an analysis of what they mean for software ... Read More

Java Exception handling best practices

By Cameron McKenzie 09 Sep 2022

Don't let the complexities of Java Exception handling get you down. Follow these top 10 Java Exception handling examples and you'll be an expert in handling errors in your Java code. Read More

Real world Java applications

By Cameron McKenzie 04 Mar 2023

Java runs on billions of devices, and Java applications of importance run on systems all over the world. Here are the top 10 applications of Java technology today, plus a look at what the future ... Read More

long to String in Java

By Cameron McKenzie 08 Mar 2023

The easiest way to convert from a long to a String in Java is to add the long to an empty set of double quotes with the plus operator. If that's not good enough, here's a list of other conversion ... Read More

Java double decimal precision

By Cameron McKenzie 05 Mar 2023

The precision of a double in Java is 324 decimal places. But the Java double isn't always as precise as you think it should be. Sometimes even simple, two decimal Java double calculations yield ... Read More