Here you can find the source of getHHmm()
public static String getHHmm()
//package com.java2s; //License from project: Apache License import java.text.SimpleDateFormat; import java.util.Date; public class Main { private final static SimpleDateFormat simpleTimeFormat = new SimpleDateFormat("HH:mm"); public static String getHHmm() { return simpleTimeFormat.format(new Date()); }// w w w . ja va2 s.c o m }