I would like to determine the operating system of the host that my Java program is running programmatically (for example: I would like to be able to load different properties based on whether I am on a Windows or Unix platform). What is the safest way to do this with 100% reliability?
|
|
|
|
|
|
|
You can use:
P.S. You may find this code useful.
All it does is print out all the properties provided by your Java implementations. It'll give you an idea of what you can find out about your Java environment via properties. :-) P.P.S. (For pedants only.) I realise that |
||||||||||
|
|
|
|
||
|
|
|
|
I would recommend to cache it in a static variable:
That way, every time you ask for the Os, you do not fetch the property more than once in the lifetime of your application. |
||||||
|
|
|
If you're interested in how an open source project does stuff like this, you can check out the Terracotta class (Os.java) that handles this junk here: And you can see a similar class to handle JVM versions (Vm.java and VmVersion.java) here: |
||
|
|
|
|
I find that the OS Utils from Swingx does the job. |
||
|
|
