Here you can find the source of milliToMinutes(long millis)
public static long milliToMinutes(long millis)
//package com.java2s; //License from project: Apache License public class Main { public static long milliToMinutes(long millis) { return (millis / 1000) / 60; }/*from www . j av a2 s.c o m*/ }