Here you can find the source of getOffMinutes(long l)
public static long getOffMinutes(long l)
//package com.java2s; //License from project: Apache License public class Main { public static long getOffMinutes(long l) { return getOffMinutes(l, System.currentTimeMillis()); }//from w w w . j a v a 2 s .c o m public static long getOffMinutes(long l, long l1) { return (l1 - l) / 60000L; } }