我需要将浮点数转换为 2 个十进制格式。我试过
这是我的代码:Math.round(AmountSpent1,2)
float AmountSpent1 = float.Parse(FixedAmount);
Math.Round(AmountSpent1, 2);
float AmountSpent1 = float.Parse(FixedAmount);
decimal m =Convert.ToDecimal(AmountSpent1);
decimal d = Math.Round(m, 2);
你可以简单地试试这个
DecimalFormat df=new DecimalFormat("#.##");
例如
float AmountSpent1 = float.Parse(FixedAmount);
System.out.println(df.format(AmountSpent1));