double round java code example
Example 1: double round java integer
int a = (int) Math.round(doubleVar);
Example 2: java double 2 decimal
String result = String.format("%.2f", value);
Example 3: how to limit double decimal places java
package com.mkyong;
import java.math.RoundingMode;
import java.text.DecimalFormat;
public class DecimalExample {
private static DecimalFormat df2 = new DecimalFormat("#.##");
public static void main(String[] args) {
double input = 3.14159265359;
System.out.println("double : " + input);
System.out.println("double : " + df2.format(input));
df2.setRoundingMode(RoundingMode.DOWN);
System.out.println("\ndouble : " + df2.format(input));
df2.setRoundingMode(RoundingMode.UP);
System.out.println("double : " + df2.format(input));
}
}
Copy