public class DFormatTest
{
public static void main(String[] args)
{
double d = 43.335
DecimalFormat df = new DecimalFormat();
df.setMaximumFractionDigits(2);
df.setMinimumFractionDigits(2);
df.setDecimalSeparatorAlwaysShown(true);
System.out.println(d);
}
}
I have the same question, i posted a thread a little higher before i saw this one. the problem with these solutions is that they trunkate rather than rounding. is there a way around this?
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.