private int getAge(Date birthDay) {Calendar cal = Calendar.getInstance();//出生日期晚于当前时间,无法计算if (cal.before(birthDay)) {throw new IllegalArgumentException("The birthDay is before Now.It's unbelievable!");}//当前年份int yearNow = cal.get(Calendar.YEAR);//当前月份int monthNow = cal.get(Calendar.MONTH);//当前日期int dayOfMonthNow = cal.get(Calendar.DAY_OF_MONTH);cal.setTime(birthDay);int yearBirth = cal.get(Calendar.YEAR);int monthBirth = cal.get(Calendar.MONTH);int dayOfMonthBirth = cal.get(Calendar.DAY_OF_MONTH);//计算整岁数int age = yearNow - yearBirth;if (monthNow <= monthBirth) {if (monthNow == monthBirth) {if (dayOfMonthNow < dayOfMonthBirth) {//当前日期在生日之前,年龄减一age--;}} else {//当前月份在生日之前,年龄减一age--;}}return age;}
https://blog.csdn.net/qq_44621483/article/details/108573019
程序记录:
通过输入出生日期字符串,返回年龄
源码展示:
public static int getAgeForBirthday(String birthday){//定义一个日期格式yyyy-MM-dd,将String转为DateSimpleDateFormat simp = new SimpleDateFormat("yyyy-MM-dd");Date date = null;try {date = simp.parse(birthday);} catch (ParseException e) {e.printStackTrace();}//判断该生日是否在当前日期之前,设置一个初始值,表示输入日期错误if(date.after(new Date())){return -1;}//获取当前日历对象中的年、月、日Calendar nowc = Calendar.getInstance();int nowYear = nowc.get(Calendar.YEAR);int nowMonth = nowc.get(Calendar.MONTH);int nowDay = nowc.get(Calendar.DAY_OF_MONTH);//将Date转为Calendar日历对象,获取生日的年、月、日nowc.setTime(date);//通过年月日计算该对象的年纪//先通过Year计算初步年龄int year = nowYear-nowc.get(Calendar.YEAR);//通过Month和Day判断是否过生日if(nowc.get(Calendar.MONTH)>nowMonth){return year-1;}if (nowc.get(Calendar.DAY_OF_MONTH)>nowDay){return year-1;}return year;}
思路
由于String类型不能直接获取时间信息,所以将其转为Date类型,但获取Date类方法获取的只有毫秒为单位的时间,直接与当前时间计算的到的是毫秒值,由于还要考虑当前时间到出生日期间的闰年问题和月份天数不同等问题,还需要将Date类型转为Calendar类型,Calendar类型可直接获得当前日期和指定日期的年月日,先通过获取的年获取大概的年龄,再通过月和日判断当前日期是否已经过了生日由此对大概年龄减1。
Java 根据出生日期计算年龄
https://www.cnblogs.com/fuchuanzhipan1209/p/9596614.html
Java 根据出生日期计算年龄
1.把出生日期字符串转换为日期格式。
1 2 3 4 |
|
2.计算年龄
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
|
1 |
|
3.执行方法
1 2 3 4 5 6 7 8 |
|
分类: java工具