Convert Boolean to String

In this section, we are going to convert a Boolean type
data into a string.
Code Description:
This program helps you in converting the Boolean type
data into a string. The toString() method reads the Boolean type object and
it converts into a string format. This method returns a string object and
represents the boolean’s value. The Boolean object represents either “true”
or “false".
Here is the code of this program:
import java.util.*;
public class BooleanToString{
public static void main(String[] args){
boolean b = true;
String s = new Boolean(b).toString();
System.out.println("String is:"+ s);
}
}
|
Download this program:
Output this program.
C:\corejava>java BooleanToString
String is:true
C:\corejava> |

|