Here you can find the source of countMinute(Long time)
public static Integer countMinute(Long time)
//package com.java2s; //License from project: Apache License public class Main { public static Integer countMinute(Long time) { Long days = time / 60000; return days.intValue(); }//from w w w.j a va 2 s .c om }