Java tutorial
//package com.java2s; //License from project: Open Source License import java.util.Date; public class Main { public static int getMinutesBetweenTwoDates(Date start, Date end) { long diff = Math.abs(end.getTime() - start.getTime()); return (int) (diff / 1000 / 60); } }