Java – How do I remove E from float large numbers?

How do I remove E from float large numbers?… here is a solution to the problem.

How do I remove E from float large numbers?

I have a float data in my code from which I need to take the string.
The problem is that when I have a big number like 10000000, it converts the number to something like this:
1.0E7

How do I convert it to actual numbers?

Related Problems and Solutions