SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd");
long shengRi = simpleDateFormat.parse(birthday).getTime();
long time = System.currentTimeMillis();
//当前时间和生日的差值
long cha = time - shengRi;
long age = cha / (365L * 24 * 3600 * 1000);



