Freemarker日期格式化处理

官方文档: http://freemarker.incubator.apache.org/docs/ref_builtins_date.html

默认按照本地计算机地区进行日期格式化。

基本参数:

  • date: 只显示日期,不显示时间.
    ${createTime?date}${createTime?date('yyyy-MM-dd')}
  • time: 只显示时间,不显示日期
    ${createTime?time}${createTime?time('hh:mm:ss')}
  • datetime: 时间和日期同时显示
    ${createTime}${createTime?datetime('yyyy-MM-dd hh:mm:ss')}${createTime?string('yyyy-MM-dd hh:mm:ss')}

Freemarker预置了一些日期格式

${createTime?string.short}  01:45 PM
${createTime?string.medium}  01:45:09 PM
${createTime?string.long}  01:45:09 PM PST
${createTime?string.full}  01:45:09 PM PST
${createTime?string.xs}  13:45:09-08:00
${createTime?string.iso}  13:45:09-08:00

你可能感兴趣的:(Freemarker日期格式化处理)