Here you can find the source of floatToByte(float f)
public static Byte floatToByte(float f)
//package com.java2s; //License from project: LGPL public class Main { public static Byte floatToByte(float f) { if (f >= Byte.MIN_VALUE && f <= Byte.MAX_VALUE) { return (byte) f; }/*from w ww . j av a 2 s. co m*/ return null; } public static byte floatToByte(float f, byte defaultValue) { if (f >= Byte.MIN_VALUE && f <= Byte.MAX_VALUE) { return (byte) f; } return defaultValue; } }