Convert string to boolean
static boolean parseBoolean(String s)
- Parses the string argument as a boolean.
static Boolean valueOf(boolean b)
- Returns a Boolean instance representing the specified boolean value.
static Boolean valueOf(String s)
- Returns a Boolean with a value represented by the specified string.
public class Main {
public static void main(String[] args) {
System.out.println(Boolean.parseBoolean("true"));
System.out.println(Boolean.valueOf("true"));
}
}
The output:
true
true