我将双精度转换为2位小数的方法无法正常工作

时间:2012-09-21 06:49:32

标签: java double decimal conventions decimal-point

  

可能重复:
  Is there an equivalent for toPrecision() in Java?

我创建了一个方法,假设将数字限制为只有2位小数,但它的作用是将数字显示为2位小数,然后显示零。

另外,从下面的数字计算我可以注意到它错误地舍入了数字。数字应为478.03 129.06 348.97

这里有什么问题?

PS。我只是关注伪代码,我无法导入超过import java.io.*;

的任何内容

我的输出:

Employee's Last Name: dfsdfsdf
Employment Status (F or P): p
Hourly Pay Rate: 8.35
Hours Worked: 51.5
-------------------------------------------------------
Name    Status      Gross   Taxes   Net
dfsdfsdf    Part Time       478.040000  129.070000  348.970000

我输入所有数据的代码,然后尝试输出它:

private static void outputData(String name, char status, double pay) 
{
    if (status == "p".charAt(0))
    {
        System.out.println("-------------------------------------------------------");
        System.out.println("Name\tStatus\t\tGross\tTaxes\tNet");
        System.out.printf("%s\tPart Time\t\t%f\t%f\t%f\n\n", 
                name, 
                roundDouble(pay), 
                roundDouble(calculateTaxes(pay)), 
                roundDouble(pay - calculateTaxes(pay)));
    }
    else if (status == "f".charAt(0))
    {
        System.out.println("-------------------------------------------------------");
    }
}

更多代码,这是应该进行转换的方法:

private static double roundDouble(double number) 
{
    return Double.parseDouble(String.format("%.2f", number));
}

2 个答案:

答案 0 :(得分:3)

您可以尝试使用NumberFormat

double value = 478.03123456789;
NumberFormat nf = NumberFormat.getNumberInstance();
nf.setMaximumFractionDigits(2);

System.out.println(nf.format(value));

输出478.03

ps - 也可以帮助原始值;)

答案 1 :(得分:1)

尝试这样做:

private static double roundDouble(double number) 
{
    return java.lang.Math.round((number * 100) / 100.0));
}