Here you can find the source of getHours()
public static int getHours()
//package com.java2s; //License from project: Apache License import java.util.Calendar; public class Main { public static int getHours() { Calendar now = Calendar.getInstance(); return now.get(Calendar.HOUR); }/*from w w w . j a va 2 s . com*/ }