How do I programmatically determine operating system in Java? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-03T10:26:49Z http://stackoverflow.com/feeds/question/228477 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/228477/how-do-i-programmatically-determine-operating-system-in-java 7 How do I programmatically determine operating system in Java? KG 2008-10-23T03:47:05Z 2008-10-23T04:40:21Z <p>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?</p> http://stackoverflow.com/questions/228477/how-do-i-programmatically-determine-operating-system-in-java/228481#228481 14 Answer by Chris Jester-Young for How do I programmatically determine operating system in Java? Chris Jester-Young 2008-10-23T03:48:47Z 2008-10-23T03:56:25Z <p>You can use:</p> <pre><code>System.getProperty("os.name") </code></pre> <p>P.S. You may find this code useful.</p> <pre><code>import java.util.Map; class ShowProperties { public static void main(String[] args) { for (Map.Entry&lt;Object, Object&gt; e : System.getProperties().entrySet()) { System.out.println(e); } } } </code></pre> <p>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>P.P.S. (For pedants only.) I realise that <code>java.util.Properties</code> has a <code>toString</code> 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.</p> http://stackoverflow.com/questions/228477/how-do-i-programmatically-determine-operating-system-in-java/228484#228484 7 Answer by Julien Grenier for How do I programmatically determine operating system in Java? Julien Grenier 2008-10-23T03:50:07Z 2008-10-23T03:50:07Z <pre><code>System.getProperty("os.name") </code></pre> http://stackoverflow.com/questions/228477/how-do-i-programmatically-determine-operating-system-in-java/228499#228499 1 Answer by VonC for How do I programmatically determine operating system in Java? VonC 2008-10-23T03:58:33Z 2008-10-23T03:58:33Z <p>I would recommend to cache it in a static variable:</p> <pre><code>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 } </code></pre> <p>That way, every time you ask for the Os, you do not fetch the property more than once in the lifetime of your application.</p> http://stackoverflow.com/questions/228477/how-do-i-programmatically-determine-operating-system-in-java/228562#228562 0 Answer by Alex Miller for How do I programmatically determine operating system in Java? Alex Miller 2008-10-23T04:37:26Z 2008-10-23T04:37:26Z <p>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:</p> <ul> <li><a href="http://svn.terracotta.org/svn/tc/dso/trunk/code/base/common/src/com/tc/util/runtime/" rel="nofollow">http://svn.terracotta.org/svn/tc/dso/trunk/code/base/common/src/com/tc/util/runtime/</a></li> </ul> <p>And you can see a similar class to handle JVM versions (Vm.java and VmVersion.java) here:</p> <ul> <li><a href="http://svn.terracotta.org/svn/tc/dso/trunk/code/base/common-api/src/com/tc/util/runtime/" rel="nofollow">http://svn.terracotta.org/svn/tc/dso/trunk/code/base/common-api/src/com/tc/util/runtime/</a></li> </ul> http://stackoverflow.com/questions/228477/how-do-i-programmatically-determine-operating-system-in-java/228568#228568 0 Answer by Richard Harrison for How do I programmatically determine operating system in Java? Richard Harrison 2008-10-23T04:40:21Z 2008-10-23T04:40:21Z <p>I find that the <a href="https://swingx.dev.java.net/source/browse/swingx/src/java/org/jdesktop/swingx/util/OS.java?view=markup" rel="nofollow">OS Utils from Swingx</a> does the job.</p>