Java Platform Information
public class Util{
public static String[] getJREInfo()
{
return new String[]
{ //
"Java Platform Information", //
"Java Runtime Name: " + System.getProperty("java.runtime.name"), //
"Java Version: " + System.getProperty("java.version"), //
"Java Class Version: " + System.getProperty("java.class.version"), //
};
}
}
Related examples in the same category