Conversion from long to byte


 

Conversion from long to byte

In this tutorial we will learn how to convert a long type value to byte type value.

In this tutorial we will learn how to convert a long type value to byte type value.

Conversion from long to byte:

In this tutorial we will learn how to convert a long type value to byte type value.

Description:

This program will take a long type value from console and provide the conversion to byte type. The line long mylong = Long.parseLong(buffreader.readLine()); reads the long type value from console. The line byte mybyte = (byte)(mylong); converts the mylong long type value to mybyte byte type value.

Code:

import java.io.*;

class longtobyte {
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 long type to byte type---");
System.out.println("Enter long type value: ");
// Read long type data
long mylong = Long.parseLong(buffreader.readLine());
// Convert long type data to byte type
byte mybyte = (byte)(mylong);
System.out.println("Converted value from long type to byte type is : " + mybyte);
} 
catch (Exception e) {
System.out.println(" Error " + e);	
}
}
}
 

Output:

Download this code

Ads