Development Class Java

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"), //
    };
  }
}