Convert float to string


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

public class Main {
  public static void main(String[] args) throws Exception {

    String str = Float.toString(0.3F);
  }
}
Home 
  Java Book 
    Runnable examples  

Data Type Float:
  1. Cast a float or double to an integral value
  2. Create Float from float value
  3. Compare Float
  4. Convert float to string
  5. Convert Float to Numeric Primitive Data Types
  6. Is Float infinite
  7. Is Float Not a Number(isNaN)
  8. Min and Max value of float type