在Groovy中,有一些捷徑用於查找Date對象的各種常用變量,如下面列出的那些。如何從groovy中的日期中提取一年的日期
Date now = new Date()
Integer year = now.year + 1900
Integer month = now.month + 1
Integer day = now.date
Integer hour = now.hours
Integer minute = now.minutes
獲得今年的一天的快捷方式是什麼?
+1問一個問題,並回來回答它! – WilliamShatner
你也可以使用calendar.instance:'Calendar.instance [Calendar.DAY_OF_YEAR]' – bitsnaps