You can use:
System.getProperty("os.name");
:-)
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.
