Java examples for Language Basics:float
Convert Float Object to String Object
public class Main { public static void main(String[] args) { Float fObj = new Float(10.25); String str = fObj.toString(); System.out.println("Float converted to String as " + str); }//from w w w .j a va2 s . c om }