Convert boolean to string
String toString()
- Returns a String object representing this Boolean's value.
static String toString(boolean b)
- Returns a String object representing the specified boolean.
public class Main {
public static void main(String[] args) {
Boolean boolean1 = new Boolean("true");
System.out.println(boolean1.toString());
System.out.println(Boolean.toString(true));
}
}
The output:
true
true