Use toString method of Float class to convert Float into String.
public class Main { public static void main(String[] args) { Float fObj = new Float(10.25); String str = fObj.toString(); System.out.println(str); } }