Conversion from float to byte


 

Conversion from float to byte

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

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

Conversion from float to byte:

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

Description:

This program will take a float value from console and provides a conversion to byte type data. The line float myfloat = Float.parseFloat(buffreader.readLine()); reads the float type data from console. The line byte mybyte = (byte)(myfloat); converts the myfloat float type value to mybyte byte type value.

Code:

import java.io.*;

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

Output:

Download this code

Ads