Here you can find the source of getMilliSecondByHourAndMins(int hour, int min)
public static long getMilliSecondByHourAndMins(int hour, int min)
//package com.java2s; //License from project: Apache License public class Main { public static long getMilliSecondByHourAndMins(int hour, int min) { return hour * 60 * 60 * 1000 + min * 60 * 1000; }// www . j a va2s . com }