1. public class Commander {2. public static void main(String[] args) {3. String myProp = /* insert code here */4. System.out.println(myProp);5. }6. }and the command line:java -Dprop.custom=gobstopper Commander
System.load("prop.custom");
System.getenv("prop.custom");
System.property("prop.custom");
System.getProperty("prop.custom");
System.getProperties().getProperty("prop.custom");