In this tutorial we will learn how to convert a byte type value to boolean type value.
In this tutorial we will learn how to convert a byte type value to boolean type value.In this tutorial we will learn how to convert a byte type value to boolean type value.
This program will take a byte value from console and provides a conversion to boolean type data. The line byte mybyte = Byte.parseByte(buffreader.readLine()); reads the byte type data from console. The line boolean mybool = (mybyte!=0); checks the condition if mybyte value is not equal to zero the mybool value will be true otherwise false.
import java.io.*; class bytetoboolean { public static void main(String[] args) { try { // Reads the value from console BufferedReader buffreader = new BufferedReader(new InputStreamReader(System.in)); System.out.println("---Data Conversion from byte type to boolean type---"); System.out.println("Enter byte type value: "); // Read byte type data byte mybyte = Byte.parseByte(buffreader.readLine()); // Convert byte type data to boolean type boolean mybool = (mybyte!=0); System.out.println("Converted value from byte type to boolean type is : " + mybool); } catch (Exception e) { System.out.println(" Error " + e); } } }