Here you can find the source of getHour()
public static int getHour()
//package com.java2s; //License from project: Apache License import java.util.Calendar; public class Main { private static Calendar CALENDAR = Calendar.getInstance(); public static int getHour() { return CALENDAR.get(11); }/* w ww. ja v a2 s . c om*/ }