标签: groovy
我想转换当前日期(在groovy中)
def currentDate= new Date() println currentDate Tue Dec 30 14:48:00 EST 2014
into(即小时和分钟格式)1448或14:48
1448
14:48
答案 0 :(得分:1)
您可以尝试Date.format:
Date.format
new Date().format('HHmm') new Date().format('HH:mm')