Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

does anybody know how to iterate the day of the date? ie. something like

    new Date()+1 

or

    new Date().format('yyyy-MM-dd')++; 

or something like that? Please let me know.

share|improve this question
1  
Did you try either? The first should work – tim_yates Aug 12 '12 at 15:51
I did but it has an error in grails console plugin. I used it to execute codes, ei. for loop the date and iterate the day for each loop. – user1577161 Aug 12 '12 at 15:59
1  
Posting the code you tried and the error you got would help. The first should work – tim_yates Aug 12 '12 at 16:03

3 Answers

Groovy has some elegant ways to work with date and time values, for example you can use TimeCategory.

import groovy.time.TimeCategory

use (TimeCategory) {
    new Date() + 1.day
}
share|improve this answer
TimeCategory is fantastic for date math – doelleri Aug 13 '12 at 3:10

For example:

def date = new Date()

you can use

date + 1
date.plus(1)
date.next()

reference: http://groovy.codehaus.org/groovy-jdk/java/util/Date.html

share|improve this answer

You can also construct Ranges from Dates like so:

Date now = new Date().clearTime()
Date twoDaysTime = now + 2

(now..twoDaysTime).each {
  println it
}

Which will print:

Mon Aug 13 00:00:00 BST 2012
Tue Aug 14 00:00:00 BST 2012
Wed Aug 15 00:00:00 BST 2012
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.