Here you can find the source of IntToFloat(int i)
public static float IntToFloat(int i)
//package com.java2s; public class Main { public static float IntToFloat(int i) { return Float.intBitsToFloat(i); }//from w w w . ja v a2s . c o m }