Here you can find the source of getTimeLabel(long date)
public static String getTimeLabel(long date)
//package com.java2s; import java.text.SimpleDateFormat; public class Main { private static String TIME_FORMAT = "HH:mm"; public static String getTimeLabel(long date) { SimpleDateFormat sdf = new SimpleDateFormat(TIME_FORMAT); return sdf.format(date); }/*from w w w .j av a 2 s. c o m*/ }