根据生日获取年龄

Posted 段桥123

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了根据生日获取年龄相关的知识,希望对你有一定的参考价值。

【根据生日获取年龄】

/**
* 根据生日获取年龄
* @param birthday
* @return
* @throws Exception
*/
private static int getAgeByBirth(Date birthday) throws Exception {
int age = 0;
try {
Calendar now = Calendar.getInstance();
now.setTime(new Date());// 当前时间
Calendar birth = Calendar.getInstance();
birth.setTime(birthday);
if (birth.after(now)) {//如果传入的时间,在当前时间的后面,返回0岁
age = 0;
} else {
age = now.get(Calendar.YEAR) - birth.get(Calendar.YEAR);
if (now.get(Calendar.DAY_OF_YEAR) > birth.get(Calendar.DAY_OF_YEAR)) {
age += 1;
}
}
return age;
} catch (Exception e) {//兼容性更强,异常后返回数据
return 0;
}
}

以上是关于根据生日获取年龄的主要内容,如果未能解决你的问题,请参考以下文章

mysql 年龄计算(根据生日字段)

IOS 根据身份证号码获取 年龄 生日 性别

沫沫金原创提供:完整的根据身份证获取省份性别年龄生日及页面验证

根据生日计算员工年龄

根据生日计算年龄

根据生日自动计算年龄