Java tutorial
//package com.java2s; /* * Copyright (C) 2009 Klaus Reimer <k@ailis.de> * See LICENSE.md for licensing information. */ public class Main { /** * Checks if application is running on a Mac OS X system * * @return True if app runs on Mac OS X, false it not */ public static boolean isMacOSX() { return "Mac OS X".equals(System.getProperty("os.name")); } }