Here you can find the source of getHourAndMin(long time)
public static String getHourAndMin(long time)
//package com.java2s; //License from project: Apache License import java.text.SimpleDateFormat; import java.util.Date; public class Main { public static String getHourAndMin(long time) { SimpleDateFormat format = new SimpleDateFormat("HH:mm"); return format.format(new Date(time)); }//from w ww . j a v a 2 s.co m }