Here you can find the source of calculateAge(Date birthday)
public static int calculateAge(Date birthday)
//package com.java2s; //License from project: Apache License import java.util.Calendar; import java.util.Date; public class Main { public static int calculateAge(Date birthday) { Calendar today = Calendar.getInstance(); Calendar birth = Calendar.getInstance(); birth.setTime(birthday);/* w w w . j a v a 2 s. com*/ int todayYear = today.get(Calendar.YEAR); int birthYear = birth.get(Calendar.YEAR); return todayYear - birthYear; } }