How to find the number of days between two dates in java or groovy?

后端 未结 9 1801
走了就别回头了
走了就别回头了 2020-12-09 19:25

I have a method which uses following logic to calculate difference between days.

long diff = milliseconds2 - milliseconds1;
long diffDays = diff / (24 * 60 *         


        
9条回答
  •  隐瞒了意图╮
    2020-12-09 20:15

    For the groovy solution you asked for you should consider using this:

    use(groovy.time.TimeCategory) {
       def duration = date1 - date2
       println "days: ${duration.days}, Hours: ${duration.hours}"
    }
    

    It's very easy to understand and extremely readable. You asked for a example how this can be used in an easy method which calculates the days between two dates. So here is your example.

    class Example {
    
        public static void main(String[] args) {
            def lastWeek = new Date() - 7;
            def today = new Date()
    
            println daysBetween(lastWeek, today)
        }
    
        static def daysBetween(def startDate, def endDate) {
            use(groovy.time.TimeCategory) {
                def duration = endDate - startDate
                return duration.days
            }
        }
    }
    

    If you run this example it will print you 7. You can also enhance this method by using before() and after() to enable inverted dates.

提交回复
热议问题