Detect MacOS X or 9
can distinguish the difference between MacOSX and <=MacOS9?
I know how to detect a MACINTOSH computer, but not
the different mac operating systems...
String strAgentOS = request.getHeader("ua-os");
String strAgent = request.getHeader("user-agent");
if (strAgentOS != null && strAgentOS.indexOf("MacOS") != -1)
{ bMac = true; }
else if (strAgent != null && strAgent.indexOf("Macintosh") != -1)
{ bMac = true; }

