Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Calendar
int day = 23;
int month = 12;
int year = 2000;
Calendar cal = new Calendar();
cal.set(year,month,day);
long timeInMilliseconds = cal.getTimeInMillis();
Date timeAsDate = cal.getTime();