I want to convert String to a float value in Java without exponential form.
String value = "108595000";
System.out.println(Float.valueOf(value));
It shows this E notation: 1.08595E8.
I want it to print it like this: 108595000.0
What is the best way to prevent this?