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.
Date date = null;
DateFormat myDate = new SimpleDateFormat("yyyy-MM-dd");
try {
date = myDate.parse("2003-08-20");
} catch (ParseException e) {
}
System.out.println("Date = " + date);
Calendar calendar = Calendar.getInstance();
calendar.setTime(date);
System.out.println("year = " + calendar.get(Calendar.YEAR));