Here you can find the source of getHour(Date date)
public static final int getHour(Date date)
//package com.java2s; //License from project: Open Source License import java.util.Calendar; import java.util.Date; public class Main { public static final int getHour(Date date) { Calendar calendar = Calendar.getInstance(); calendar.setTime(date);/*from www. j ava 2 s . c o m*/ return calendar.get(11); } public static final int getHour(long millis) { Calendar calendar = Calendar.getInstance(); calendar.setTimeInMillis(millis); return calendar.get(11); } }