Here you can find the source of getHour()
public static String getHour()
//package com.java2s; //License from project: Apache License import java.text.SimpleDateFormat; import java.util.Date; public class Main { public final static SimpleDateFormat sdf = new SimpleDateFormat(); public static String getHour() { sdf.applyPattern("HH"); return sdf.format(new Date()); }/*from w w w . jav a 2 s .c om*/ }