Java tutorial
//package com.java2s; import java.util.Date; public class Main { public static final int getHourByMill(long mill) { Date curDate = new Date(mill); return curDate.getHours(); } }