| Author |
Facing problems in subtracting two date.
|
lokesh pattajoshi
Ranch Hand
Joined: Jul 29, 2009
Posts: 130
|
|
Hi every body i am facing problem while subtracting current date with given date actually the requirement is that i have to get date of birth as input and subtract it to current date to get total year.can any body help me to solve this problem.
Regards,
Lokesh Kumar Pattajoshi
|
 |
Rob Spoor
Sheriff
Joined: Oct 27, 2005
Posts: 19216
|
|
Check out java.util.Calendar, especially its get method in combination with Calendar.YEAR and Calendar.DAY_OF_YEAR. In short:
- calculate the difference in years
- if the current date is before the birthday, subtract one (hasn't had his birthday yet)
|
SCJP 1.4 - SCJP 6 - SCWCD 5
How To Ask Questions How To Answer Questions
|
 |
lokesh pattajoshi
Ranch Hand
Joined: Jul 29, 2009
Posts: 130
|
|
|
Thank you very much Rob my broblems is solved now.
|
 |
 |
|
|
subject: Facing problems in subtracting two date.
|
|
|