Java tutorial
//package com.java2s; //License from project: Open Source License import java.util.Date; public class Main { public static float calculateTimeDifferenceFrom(Date startTime) { long timeDifferenceLong = (new Date()).getTime() - startTime.getTime(); return (float) timeDifferenceLong / 1000; } }