- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHPPhysics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
String representation of Boolean in Java
To get the string representation of Boolean, use the toString() method.
Firstly, we have used the valueOf() method for Boolean object and set a string value.
Boolean val = Boolean.valueOf("false");
The same is then represented using “toString() method.
val.toString();
Let us see the complete example that prints the string representation of Boolean (True and False) in Java.
Example
public class Demo {
public static void main(String[] args) {
// false
Boolean val = Boolean.valueOf("false");
System.out.println("Displaying the string representation of Boolean");
System.out.println(val.toString());
// true
val = Boolean.valueOf("true");
System.out.println(val.toString());
}
}
Output
Displaying the string representation of Boolean false true
Advertisements