現在、私は取得するには、次のコードを使用しています年、月、月、時、分Groovyでの日:の日のためにgetAt(Calendar.DAY_OF_MONTH)
を使用してGroovyの/ Grailsの日付クラス - 月の取得日
Date now = new Date()
Integer year = now.year + 1900
Integer month = now.month + 1
Integer day = now.getAt(Calendar.DAY_OF_MONTH) // inconsistent!
Integer hour = now.hours
Integer minute = now.minutes
// Code that uses year, month, day, hour and minute goes here
月はこの文脈では少し矛盾しているようです。月の日を入手するための方法はありますか?
なぜあなたは今何年もやっていますか? –
Mykola:新しいDate()。年は現在109であるため、1900を追加する必要があります。 – knorv
しかし、なぜこれを「年」に追加して使用しないのですか? –