How do I format a number in Java? What are the "Best Practices"?
Will I need to round a number before I format it?
32.302342
You and String.format() will be new best friends!
String.format()
https://docs.oracle.com/javase/1.5.0/docs/api/java/util/Formatter.html#syntax
String.format("%.2f", (double)value);