Answers for "how to check difference between two dates java"

8

find difference in days between two dates java

String dateStart = "01/14/2015 08:29:58";
String dateStop = "01/15/2015 11:31:48";

//HH converts hour in 24 hours format (0-23), day calculation
SimpleDateFormat format = new SimpleDateFormat("MM/dd/yyyy HH:mm:ss");

Date d1 = null;
Date d2 = null;

d1 = format.parse(dateStart);
d2 = format.parse(dateStop);

//in milliseconds
long diff = d2.getTime() - d1.getTime();

long diffSeconds = diff / 1000 % 60;
long diffMinutes = diff / (60 * 1000) % 60;
long diffHours = diff / (60 * 60 * 1000) % 24;
long diffDays = diff / (24 * 60 * 60 * 1000);

System.out.print(diffDays + " days, ");
System.out.print(diffHours + " hours, ");
System.out.print(diffMinutes + " minutes, ");
System.out.print(diffSeconds + " seconds.");
Posted by: Guest on February-05-2021
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 check difference between two dates java"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language