Here you can find the source of convertFloatToString(float value)
public static String convertFloatToString(float value)
//package com.java2s; //License from project: Open Source License public class Main { public static String convertFloatToString(float value) { return Float.toString(value); }/*from w w w. j ava 2 s. com*/ }