vote up 6 vote down star

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?

flag

5 Answers

vote up 14 vote down check

You can use:

System.getProperty("os.name")

P.S. You may find this code useful.

import java.util.Map;

class ShowProperties {
    public static void main(String[] args) {
        for (Map.Entry<Object, Object> e : System.getProperties().entrySet()) {
            System.out.println(e);
        }
    }
}

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 java.util.Properties has a toString method, and thus the property iteration is redundant; however I don't like its formatting (I prefer one property a line, thanks). Just in case people ask.

link|flag
1  
Careful!!! That smiley is not a legal java operator!!! Though I think it should instruct the compiler to "please accept this code. I tried my best." – benjismith Oct 23 '08 at 3:49
It's not, but it's not in the backticks code block either. :-) – Chris Jester-Young Oct 23 '08 at 3:52
sorry 'bout the semicolon – jjnguy Oct 23 '08 at 4:04
It's okay, I understand that typing a semicolon is a habit for many programmers, myself included. – Chris Jester-Young Oct 23 '08 at 4:11
vote up 7 vote down
System.getProperty("os.name")
link|flag
vote up 1 vote down

I would recommend to cache it in a static variable:

public static final class OsUtils
{
   private static String OS = null;
   public static String getOsName()
   {
      if(OS == null) { OS = System.getProperty("os.name");
   }
   public static boolean isWindows()
   {
      return getOsName().startsWith("Windows");
   }

   public static boolean isUnix() // and so on
}

That way, every time you ask for the Os, you do not fetch the property more than once in the lifetime of your application.

link|flag
I agree with the getOSName function, on the basis of OAOO (once and only once); however, the caching is totally redundant given the speed of hash lookups. – Chris Jester-Young Oct 23 '08 at 4:02
Totally redundant might be a bit harsh, hash lookups are more expensive than accessing a reference. It all depends on the context. – Craig Oct 23 '08 at 4:04
Good points... Feel free to down-vote if you think it is a bad practice ;) – VonC Oct 23 '08 at 4:10
vote up 0 vote down

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:

link|flag
vote up 0 vote down

I find that the OS Utils from Swingx does the job.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.