Here you can find the source of getDateTimeLabel(long time)
public static String getDateTimeLabel(long time)
//package com.java2s; import java.text.SimpleDateFormat; import java.util.Date; public class Main { private static String DATE_TIME_FORMAT = "yyyy-MM-dd HH:mm"; public static String getDateTimeLabel(long time) { SimpleDateFormat formatter = new SimpleDateFormat(DATE_TIME_FORMAT); return formatter.format(new Date(time)); }/*from w w w.ja va2s .co m*/ }