在groovy中将日期转换为小时和分钟格式

时间:2014-12-30 19:54:55

标签: groovy

我想转换当前日期(在groovy中)

 def currentDate= new Date() 
 println currentDate
 Tue Dec 30 14:48:00 EST 2014

into(即小时和分钟格式)144814:48

1 个答案:

答案 0 :(得分:1)

您可以尝试Date.format

new Date().format('HHmm')
new Date().format('HH:mm')