“Nowa data groovy” Kod odpowiedzi

Zdobądź randkę teraz groovy

import java.text.SimpleDateFormat 
import java.util.Date

Date now = new Date();
Calendar calendar = Calendar.getInstance();
calendar.setTime(now);

int yearNow = calendar.get(Calendar.YEAR)
int monthNow = calendar.get(Calendar.MONTH)
int dayNow = calendar.get(Calendar.DAY_OF_MONTH)
Annoying Ape

Nowa data groovy

// takes the date encoded as milliseconds since midnight, January 1, 1970 UTC
def mydate = new Date(System.currentTimeMillis())

// create from an existing Calendar object
def mydate = new GregorianCalendar(2014, Calendar.APRIL, 3, 1, 23, 45).time
Doubtful Dog

Odpowiedzi podobne do “Nowa data groovy”

Pytania podobne do “Nowa data groovy”

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu