java get 2 decimal places code example
Example 1: java string format .2f
String.format("%.2f", 3.45);
Example 2: how to set 2 decimal places in java
DecimalFormat df = new DecimalFormat();
df.setMaximumFractionDigits(2);
System.out.println(df.format(decimalNumber));