Answers for "how to store the two dates in java after every time and check the difference"

13

java find time between two dates

public static String getAge(String birthdate) throws ParseException {
		LocalDate parsed = LocalDate.parse("1970-01-01");
		LocalDate current = LocalDate.now();
		
		Period p = Period.between(parsed, current);

  		// Returns time between date and now
		return p.getYears() + " Years, " + p.getMonths() + " Months, " + p.getDays() + " Days";
	}
Posted by: Guest on March-11-2021

Code answers related to "how to store the two dates in java after every time and check the difference"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language