我需要能够以这种格式为事物加时间戳:
2018-01-26T10:47:44.686000-08:00
我不确定如何做到这一点 - 并且无法遵循文档
答案 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())