Format number in Struts 2 tag

前端 未结 6 1945
梦毁少年i
梦毁少年i 2021-02-01 23:28

I would like to format number displayed by tag in Struts 2. There is a double value. How can I do that? Sho

6条回答
  •  借酒劲吻你
    2021-02-01 23:47

    You need to use with .

    Property file:

    summary.cost= € {0,number,##0.00}
    

    JSP:

     
         
    
    

    This answer explains how to use # and 0 in the format mask.

提交回复
热议问题