I'm pretty new to Java and I am currently working on a project where I need to work with Floating points.
I am trying to convert the value from 3.5E8 (Double value) to a string value of 350000000. I have looked on the internet but currently I can't find a solution.
DecimalFormat
. – Andrew Thompson Jun 13 '13 at 12:29System.out.println(new BigDecimal(f).toPlainString());
? – Alexis C. Jun 13 '13 at 12:30