Here you can find the source of FloatToInt(float f)
public static int FloatToInt(float f)
//package com.java2s; public class Main { public static int FloatToInt(float f) { return Float.floatToIntBits(f); }/* w w w .ja va 2 s . c o m*/ }