Answers for "how to show only 4 decimal places in java"

2

specify decimal places java

double test = 12.15;
DecimalFormat df = new DecimalFormat("#.0");
System.out.println(df.format(test)); // Console: 12.2
// # - prints a digit if provided, nothing otherwise
// . - indicates where to put the decimal seperator
// 0 - prints a digit if provided, 0 otherwise
Posted by: Guest on December-29-2020
0

how to get 2 decimal places in java

total = (double) 100 / listMember.size();
DecimalFormat df = new DecimalFormat("#.##");
String dx = df.format(total);
total = Double.valueOf(dx);
Posted by: Guest on July-31-2021

Code answers related to "how to show only 4 decimal places in java"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language