Getting System Properties

import java.util.Properties;

class SystemProperties {
    public static void main(String[] args) {
        Properties props = System.getProperties();
        props.list(System.out);
    }
}

Comments

Popular posts from this blog

Zeller's Congruence

Property Event-Delegation

Method with variable arguments