how to get up to four floating points of double in java code example
Example 1: java double 2 decimal
String result = String.format("%.2f", value);
Example 2: how to format a double in java to 2 decimal places
DecimalFormat df = new DecimalFormat("#.00");