jstl的标签使用,日期,金额等格式化
一般在项目中会遇到日期和数字的格式化问题:总结了一下主要有下面几种
日期格式化:
<fmt:formatDate type="both" value="${Time}"/> 格式为:yyyy-MM-ss HH:ss:mm
<fmt:formatDate pattern="yyyy-MM-dd HH:mm:ss" value="${getTime}"/> 常用格式
数字格式化:
<fmt:formatNumber type="number" maxFractionDigits="3" value="" /> //最大小数位位数 小数点互殴保留几位小数
<fmt:formatNumber value="${c.money}" pattern="#.0000"/> //格式化数字 或#0.00