Here you can find the source of getHour()
public static String getHour()
//package com.java2s; //License from project: Open Source License import java.text.SimpleDateFormat; import java.util.Calendar; public class Main { /**/*from w w w. j a v a 2 s .c o m*/ * Devuelve la hora actual * @return */ public static String getHour() { return new SimpleDateFormat("HH:mm:ss").format(Calendar.getInstance().getTime()); } }