我有以下序列
ubuntu@ip-10-63-3-254:/mnt$ export JAVA_OPTS=-Dmt.config.from=En ubuntu@ip-10-63-3-254:/mnt$ echo $JAVA_OPTS -Dmt.config.from=En ubuntu@ip-10-63-3-254:/mnt$ javac hello.java ubuntu@ip-10-63-3-254:/mnt$ java 你好 mt.config.from=null ubuntu@ip-10-63-3-254:/mnt$ java -Dmt.config.from=En 你好 mt.config.from=En ubuntu@ip-10-63-3-254:/mnt$
hello.java 在哪里
公共课你好{ 公共静态无效主要(字符串[]参数){ 字符串属性 = "mt.config.from"; 字符串值 = System.getProperty(property); System.out.println(property + "=" + value); } }
为什么我的 export JAVA_OPTS=-Dmt.config.from=En 没有被 hello.java 选中?谢谢