how to format a double in java to 2 decimal places

Java
DecimalFormat df = new DecimalFormat("#.00"); double input = 3.14159265359;
System.out.format("double : %.2f", input); // 3.14
System.out.println("double : " + String.format("%.2f", input)); // 3.14printf(%.2f);
Source

Also in Java: