如果它们之间的差异小于10分钟,我想比较两个日期。我该怎么做?
Date created = Date.parse('yyyy-MM-dd HH:mm:ss','2014-06-05 10:19:04')
Date now = new Date()
now.compareTo(created) gives me 1 but I want to compare the minute difference.
答案 0 :(得分:8)
尝试使用java.util.concurrent.TimeUnit
。我假设,Groovy Date.parse
创建了java.util.Date
。
def difference = now.time - created.time
if (difference < TimeUnit.MINUTES.toMillis(10)) {
//do something
}