Conversion from int to byte


 

Conversion from int to byte

In this tutorial we will learn how to convert an int type value to byte type data.

In this tutorial we will learn how to convert an int type value to byte type data.

Conversion from int to byte:

In this tutorial we will learn how to convert an int type value to byte type data.

Description:

This program will take an int value from console and provide a conversion  to byte data. The line int myint = Integer.parseInt(buffreader.readLine()); is used to read the int value from console and store in myint variable. The line byte mybyte = (byte)(myint); converts the myint int type value to mybyte byte type data.

Code:

import java.io.*;

class inttobyte {
	public static void main(String[] args) {
		try {
			BufferedReader buffreader = new BufferedReader(
					new InputStreamReader(System.in));
			System.out.println("Enter the int value:");
			int myint = Integer.parseInt(buffreader.readLine());
			byte mybyte = (byte) (myint);
			System.out.println("Convert value from int to byte is: " + mybyte);
		} catch (Exception e) {
			System.out.println(" Error " + e);
		}
	}
};
 

Output:

Download this code

Ads