show/hide this revision's text 5 Eh, we don't need the smiley in its own paragraph. Also, no semicolons in expressions, please (pet peeve).

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.

show/hide this revision's text 4 fixed smiley-enduced compiler error :P

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. :-)

show/hide this revision's text 3 added 465 characters in body

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. :-)

show/hide this revision's text 2 fixed blatent compiler error :P
show/hide this revision's text 1