分钟递增日期对象

分钟递增日期对象

本文介绍了在Groovy中以小时/分钟递增日期对象的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想在当前日期添加几小时或几分钟。例如,我创建一个具有当前时间和日期的Date对象,我想将它增加30分钟,我如何在Grails / Groovy中执行这样的操作?

I want to add hours or minutes to a current date. For example I create a Date object with current time and date, and I want to increment it by 30min, how can I do such thing in Grails/Groovy ?

我想知道如果我能做同样的事情,我们可以做的是添加1到目前为止,它移动它

I was wondering if I could do the same that we can do with add 1 to date and it moves it a day ahead.

推荐答案

您可以使用TimeCategory

You can use TimeCategory

import groovy.time.TimeCategory

currentDate =  new Date()

println currentDate

use( TimeCategory ) {
    after30Mins = currentDate + 30.minutes
}

println after30Mins

这篇关于在Groovy中以小时/分钟递增日期对象的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-01 22:00