How do I programmatically determine operating system in Java? - Stack Overflow most recent 30 from stackoverflow.com2009-12-03T10:26:49Zhttp://stackoverflow.com/feeds/question/228477http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/228477/how-do-i-programmatically-determine-operating-system-in-java7How do I programmatically determine operating system in Java?KG2008-10-23T03:47:05Z2008-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#22848114Answer by Chris Jester-Young for How do I programmatically determine operating system in Java?Chris Jester-Young2008-10-23T03:48:47Z2008-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<Object, Object> 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#2284847Answer by Julien Grenier for How do I programmatically determine operating system in Java?Julien Grenier2008-10-23T03:50:07Z2008-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#2284991Answer by VonC for How do I programmatically determine operating system in Java?VonC2008-10-23T03:58:33Z2008-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#2285620Answer by Alex Miller for How do I programmatically determine operating system in Java?Alex Miller2008-10-23T04:37:26Z2008-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#2285680Answer by Richard Harrison for How do I programmatically determine operating system in Java?Richard Harrison2008-10-23T04:40:21Z2008-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>