Here you can find the source of dateToHMTime(Date date)
static public String dateToHMTime(Date date)
//package com.java2s; //License from project: Open Source License import java.text.SimpleDateFormat; import java.util.Date; public class Main { static public String dateToHMTime(Date date) { if (date != null) { SimpleDateFormat formatter = new SimpleDateFormat("HH:mm"); return formatter.format(date); } else {/* w w w .java 2s.c o m*/ return ""; } } }