Java tutorial
//package com.java2s; //License from project: Open Source License import java.text.DateFormat; import java.text.SimpleDateFormat; import java.util.Date; import java.util.Locale; public class Main { public static String dateParse(long timeStampInMilliSeconds) { DateFormat df = new SimpleDateFormat("dd-MM-yyyy HH:mm", Locale.getDefault()); Date d = new Date(timeStampInMilliSeconds); return df.format(d); } }