
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Display Java Runtime Environment (JRE) Version
Use the System.getProperty() method in Java to get the Java Runtime Environment.
It’s syntax is −
String getProperty(String key)
Above, the key is the name of the system property. Since, we want the Java Runtime Environment name, therefore we will add the key as −
java.version
The following is an example −
Example
public class Demo { public static void main(String[] args) { System.out.print("Java Specification Version: "); System.out.println(System.getProperty("java.specification.version")); System.out.print("java Runtime Environment (JRE) version: "); System.out.println(System.getProperty("java.version")); } }
Output
Java Specification Version: 1.8 java Runtime Environment (JRE) version: 1.8.0_141
Advertisements