这可能是重复的,但我找不到任何适用于我的代码的答案。
我正在尝试截断 Java 中方法(用于计算费用)的结果。然后我尝试将结果写入文本文件,但它并没有像应有的那样显示。这是我得到的,也是我希望它返回的:
- 费用的结果是 8.4,它应该返回 8.40
- 费用的结果是 8.0,它应该返回 8.00
等等......请有什么建议吗?
这是我的方法的全部代码:
public Double calculateFee(Parcel pcl) {
// Get type of parcel (E, S or X)
String typeOfParcel = pcl.getParcelID().substring(0,1);
// Formula for calculating fee
Double fee = (double) 1 + Math.floor(pcl.getVolume()/28000) + (pcl.getDays()-1);
// apply a discount to parcels of type "S"
if (typeOfParcel.equalsIgnoreCase("S")) {
fee = fee * 0.9;
}
// apply a discount to parcels of type "X"
else if (typeOfParcel.equalsIgnoreCase("X")) {
fee = fee * 0.8;
}
// This is what I tried:
// Tried also using #.##, but no result
DecimalFormat decim = new DecimalFormat("0.00");
fee = Double.parseDouble(decim.format(fee));
return fee;
}