get 2 values after point code example
Example 1: java double 2 decimal
String result = String.format("%.2f", value);
Example 2: java double format
NumberFormat formatter = new DecimalFormat("#0.00");
System.out.println(formatter.format(4.0));