Answers for "calculate the time difference between two dates in hours and minutes in java"

2

date difference in minutes java

long diff = d2.getTime() - d1.getTime();//as given

long seconds = TimeUnit.MILLISECONDS.toSeconds(diff);
long minutes = TimeUnit.MILLISECONDS.toMinutes(diff);
Posted by: Guest on August-21-2020

Code answers related to "calculate the time difference between two dates in hours and minutes in java"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language