Boolean.toString() has the following syntax.
public String toString()
In the following code shows how to use Boolean.toString() method.
public class Main { /* w w w . j ava2s . c om*/ public static void main(String[] args) { Boolean boolean1 = new Boolean("true"); System.out.println(boolean1.toString()); } }
The output: