Java Boolean.parseBoolean(String s)
Syntax
Boolean.parseBoolean(String s) has the following syntax.
public static boolean parseBoolean(String s)
Example
In the following code shows how to use Boolean.parseBoolean(String s) method.
public class Main {
/* www .j av a2 s.c om*/
public static void main(String[] args) {
System.out.println(Boolean.parseBoolean("true"));
}
}
The output: