Home » Java programming language

How to get the version of running Java VM in Java?

Java java.vm.version property example: Here, we are going to learn how to get and print the version name of running Java VM in Java?
Submitted by IncludeHelp, on September 18, 2019

To get the version of running VM (Virtual Machine) in Java, we use the getProperties() method, which is defined in System class, while calling the method, we need to pass the property name to get the version of running Java VM.

The property to get the running Java VM version: "java.vm.version"

The method call is: System.getProperties("java.vm.version");

Java code to get and print the version of running Java VM

// Java program to demonstrate the example of 
// getProperties() method of System Class

import java.lang.*;
import java.util.Properties;

public class Main {
    public static void main(String[] args) {
        String vm_version = null;
        vm_version = System.getProperty("java.vm.version");
        System.out.println("Running Java vm version is: " + vm_version);
    }
}

Output

Running Java vm version is: 10.0.1+10


Comments and Discussions!

Load comments ↻





Copyright © 2024 www.includehelp.com. All rights reserved.