java string format float to 2 decimal places code example
Example 1: java string format 2 decimal places
String strDouble = String.format("%.2f", 1.23456);
DecimalFormat df = new DecimalFormat("#.##");
String formatted = df.format(2.456345);
System.out.println(formatted);
Example 2: how to set 2 decimal places in java
DecimalFormat df = new DecimalFormat();
df.setMaximumFractionDigits(2);
System.out.println(df.format(decimalNumber));
Example 3: 2 decimal places print format JAVA
printf(%.2f);