Ottenere la versione Java Runtime Environment

annuncio pubblicitario
Ottenere la versione Java Runtime Environment (JRE)
Scritto da Administrator
Venerdì 07 Gennaio 2011 12:35 -
(JRE)
Java - Ottenere la versione Java Runtime Environment
Il metodo seguente mostra come ottenere la versione Java Runtime Environment (JRE).
{codecitation style="brush: java;"} package it.soluzionijava.lang;
public class JavaVersion
{
public static void main(String[] args) {
// You can get the version of Java Runtime
Environment
// running on your machine by reading the "java.version"
// property
value from the system.
String version = System.getProperty("java.version");
//
Just show to the world your JRE version :)
System.out.println("JRE Version = " + version);
} } {/codecitation}
1/1
Scarica