这个鸟东西以前写过的,今天又遇到这个东东,结果忘了,还是写在blog中吧
public class TestGetBoolean{ public static void main(String[] args){ /* *当且仅当以参数命名的系统属性存在,且等于 "true" 字符串时,才返回 true */ //大写的true返回为false,必须是小写的true String s1 = "true"; String s2 = new String("true"); System.setProperty(s1,"true"); System.setProperty(s2,"true"); System.out.println(Boolean.getBoolean(s1));//true System.out.println(Boolean.getBoolean(s2));//true String s3 = "true"; System.out.println(Boolean.getBoolean(s3));//false System.out.println(Boolean.getBoolean("true"));//false } }
版权声明:本文为博主原创文章,未经博主允许不得转载。