Here you can find the source of hour2Millisecond(int hours)
public static long hour2Millisecond(int hours)
//package com.java2s; public class Main { public static long hour2Millisecond(int hours) { return hours * 60 * 60 * 1000; }/*from w w w .j a v a 2 s . c o m*/ }