11.public class Commander{<br /> 12.public static void main(String[]args){<br /> 13.String myProp=/*insert code here*/<br /> 14.System.out.println(myProp);<br /> 15.}<br /> 16.}<br /> and the command line:<br /> java-Dprop.custom=gobstopper Commander<br /> Which two,placed on line13,will produce the output gobstopper?()
A、System.load("prop.custom");
B、System.getenv("prop.custom");
C、System.property("prop.custom");
D、System.getProperty("prop.custom");
E、System.getProperties().getProperty("prop.custom");