1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66
|
package com.explodingpixels.util;
/**
* Utility methods for dealing with the platform (e.g. Mac or Windows).
*/
public class PlatformUtils {
private PlatformUtils() {
// utility class - no constructor needed.
}
/**
* Get's the version of Java currently running.
*
* @return the version of Java that is running.
*/
public static String getJavaVersion() {
return System.getProperty("java.version");
}
/**
* Gets the operating system version that the JVM is running on.
*
* @return the operating system version that the JVM is running on.
*/
public static String getOsVersion() {
return System.getProperty("os.version");
}
/**
* True if this JVM is running on a Mac.
*
* @return true if this JVM is running on a Mac.
*/
public static boolean isMac() {
return System.getProperty("os.name").startsWith("Mac OS");
}
/**
* True if this JVM is running Java 6 on a Mac.
*
* @return true if this JVM is running Java 6 on a Mac.
*/
public static boolean isJava6OnMac() {
return isMac() && getJavaVersion().startsWith("1.6");
}
/**
* True if this JVM is running 64 bit Java on a Mac.
*
* @return true if this JVM is running 64 bit Java on a Mac.
*/
public static boolean is64BitJavaOnMac() {
return isMac() && System.getProperty("os.arch").equals("x86_64");
}
/**
* True if this JVM is running on Mac OS X 10.5, Leopard.
*
* @return true if this JVM is running on Mac OS X 10.5, Leopard.
*/
public static boolean isLeopard() {
return isMac() && getOsVersion().startsWith("10.5");
}
}
|