maybe something along the line of
Code: Select all
if (!testJvmVersion)
JOptionPane.showMessageDialog(null, "You need a JRE newer than version 1.6 to run TASServer.\n"+
"Go to http://java.com to download one");
Code: Select all
private static boolean testJvmVersion(){
char[] version = System.getProperty("java.version").toCharArray();
int major = Character.getNumericValue(version[0]);
int minor = Character.getNumericValue(version[2]);
return ((major > 1) || ((minor > 5) && (major > 0)));
}