Answers for "how to get all the data between two dates in java code"

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 get all the data between two dates in java code"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language