In this tutorial we will learn how to convert a byte type value to int type value.
In this tutorial we will learn how to convert a byte type value to int type value.In this tutorial we will learn how to convert a byte type value to int type value.
This program will take a byte value from console and provides a conversion to int type data. The line byte mybyte = Byte.parseByte(buffreader.readLine()); reads the byte data from console. The line int myint = (int) (mybyte); converts the mybyte byte type value to myint int type data.
import java.io.*; class bytetoint { 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 int type---"); System.out.println("Enter byte type value: "); // Read byte type data byte mybyte = Byte.parseByte(buffreader.readLine()); // Convert byte type data to int type int myint = (int) (mybyte); System.out.println("Converted value from byte type to int type is : " + myint); } catch (Exception e) { System.out.println(" Error " + e); } } }