【发布时间】:2013-12-28 23:53:37
【问题描述】:
我想在我们的 jsp 页面中格式化一些数字。
首先,我在我的 porperties 中定义了一些资源format.number.with2Decimal={0,number,#0.00}
......
问题1:
我想知道‘#’和‘0’是什么意思?
0.00,#0.00,##.00,###0.00
谁能告诉我它们之间的区别?谢谢!
问题2:
如果我在操作中定义 BigDecimal 类型
BigDecimal number1;
那么我的页面应该使用一种格式来显示这个值,1.if number1=null then show -NIL-2.if number1=0 then show -NIL-3.if number1>0 then show 1.00,3434.98 .....
请忽略号码
问题3:
将 number1 更改为字符串,1.if number1=null or empty or blank then show -NIL-2.if number1=Hello then show Hello ....
你能帮我吗?
【问题讨论】:
标签: java struts2 format bigdecimal number-formatting