. Advertisement .
..3..
. Advertisement .
..4..
How do I calculate number of years months and days between two dates in java? Your suggestions would help me a lot.
Here is a suggestion from ITtutoria team for youSimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
Date birth = sdf.parse("2000-01-01");
Date now = new Date(System.currentTimeMillis());
Calendar c = Calendar.getInstance();
c.setTimeInMillis(now.getTime() - birth.getTime());
int y = c.get(Calendar.YEAR)-1970;
int m = c.get(Calendar.MONTH);
int d = c.get(Calendar.DAY_OF_MONTH)-1;
I would do something like this
Here is what you should do for this topic