年龄计算工具类

年龄计算工具类(例如根据出身年月日计算年龄)

需求

日常开发中偶尔有些时候需要对身份证号进行解析,分析出一些数据,比如年龄,因此有此工具。

AgeUtils

public class AgeUtils {

	public static void main(String[] args) {
		calcAgeForIdcard("350104198306020056");
		calcAgeForBirthday("1996-09-08");
        calcAgeForBirthday("1999-09-22");
	}

	// 根据身份证号计算年龄
	private static void calcAgeForIdcard(String idcard) {
		int year = Integer.parseInt(date.substring(6).substring(0, 4));   // 得到出身年份
        int month = Integer.parseInt(date.substring(10).substring(0, 2)); // 得到出身月份
        int day = Integer.parseInt(date.substring(12).substring(0, 2));   // 得到出身天数
		calcAge(year, momth, day);
	}
	
	// 根据输入的出身年月日计算年龄
    private static void calcAgeForBirthday(String date) {
        int year = Integer.parseInt(date.substring(0, 4));   // 得到出身年份
        int month = Integer.parseInt(date.substring(5).substring(0, 2)); // 得到出身月份
        int day = Integer.parseInt(date.substring(8).substring(0, 2));   // 得到出身天数
        calcAge(year, momth, day);
    }

	private static void calcAge(int year, int month, int day) {
		LocalDate birthday = LocalDate.of(year, month, day);
        System.out.println("Birthday: " + birthday);
        
        LocalDate today = LocalDate.now();
        System.out.println("Today: " + today);
        
        Period p = Period.between(birthday, today);
        System.out.printf("当前年龄: %d 年 %d 月 %d 日", p.getYears(), p.getMonths(), p.getDays());
        System.out.println("\n");
	}
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值