How to convert a floating point number to string?
807588Jul 9 2009 — edited Jul 10 2009How to convert a floating point number to string?
Example: Floating point number is 1234.567E02, then convert to string is 123456.7, Not "1234.567E02"
I used Float.toString(float) and String.valueOf(float) but they are not satisfy to me.
Please help me. Thanks