我需要getter将double返回到.2十进制空格......
public double getPrice () {
double totalPrice = 0.00;
DecimalFormat deciFormat = new DecimalFormat("#.00");
...
return Double.valueOf(deciFormat.format(totalPrice));
但是当我在.jsp中检查结果时,它仍然只有1个十进制空格。任何和所有的见解将不胜感激。
答案 0 :(得分:0)
将方法返回类型更改为String。 做了“Clean and build”和String.Format做了这个工作!