如何检查字符串值在Java中是否为布尔类型?
我对此进行了一些搜索,但找不到任何有用的东西。
关键是,如果 String 值为“true”或“false”,则返回值应为 true。在所有其他值中,它应该是假的。
我试过这些:
String value = "false";
System.out.println("test1: " + Boolean.parseBoolean(value));
System.out.println("test2: " + Boolean.valueOf(value));
System.out.println("test3: " + Boolean.getBoolean(value));
所有函数都返回假:(