Here you can find the source of getMinuteFromMilliSecond(int milliSecond)
public static int getMinuteFromMilliSecond(int milliSecond)
//package com.java2s; public class Main { public static int getMinuteFromMilliSecond(int milliSecond) { return (milliSecond) / (60 * 1000); }//from w ww. j a v a2 s. com }