Here you can find the source of getHour(Calendar calendar)
static public int getHour(Calendar calendar)
//package com.java2s; //License from project: Apache License import java.util.Calendar; public class Main { static public int getHour(Calendar calendar) { return calendar.get(Calendar.HOUR_OF_DAY); }//from w ww . j a v a 2 s. co m }