public class Main { public static void main(String[] args) { // Parsing string "true" will result boolean true boolean boolA = Boolean.parseBoolean("true"); System.out.println("boolA = " + boolA); // Parsing string "TRUE" also resutl boolean true boolean boolB = Boolean.parseBoolean("TRUE"); System.out.println("boolB = " + boolB); } }