Java.System.Info.JVM
public class JVMInfo { public static String getInfo(){ return System.getProperty("java.vendor") + " " + System.getProperty("java.vm.name") + " " + System.getProperty("java.version"); } }