I tried this following code but its a deprecated in android
SimpleDateFormat simpleDateFormat = new SimpleDateFormat("MM/dd/yyyy HH:mm:ss");
try {
Date date1 = simpleDateFormat.parse("11/20/2014 8:10:00 AM");
Log.e("date", "" + date1.getYear());
Log.e("month", "" + date1.getmonth());
Log.e("year", "" + date1.getYear());
Log.e("hour", "" + date1.getHours());
Log.e("minutes", "" + date1.getMinutes());
Log.e("seconds", "" + date1.getSeconds());
} catch (ParseException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
Its is deprecated how to use calendar and get day, month, year?
Set calendar time using simpleDateFormat.parse() and get field value from calendar :