如何在Groovy中专门格式化日期/时间

时间:2018-05-10 18:57:52

标签: date groovy

我需要能够以这种格式为事物加时间戳:

2018-01-26T10:47:44.686000-08:00

我不确定如何做到这一点 - 并且无法遵循文档

1 个答案:

答案 0 :(得分:0)

您可能需要查看SimpleDateFormat API:https://en.wikipedia.org/wiki/Depth-first_search

例如,上面提到的格式化程序将是:

def df = new java.text.SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss.SSSSSSZ")
println df.format(new Date())