Here you can find the source of formatDate(long date)
public static String formatDate(long date)
//package com.java2s; //License from project: Apache License import java.text.SimpleDateFormat; import java.util.Date; public class Main { public static String formatDate(long date) { SimpleDateFormat sdf = new SimpleDateFormat("mm:ss"); return sdf.format(new Date(date)); }/* w w w . j av a2s.c om*/ }