Java tutorial
//package com.java2s; //License from project: Open Source License import java.text.DateFormat; import java.text.SimpleDateFormat; import java.util.Locale; public class Main { public static String convertUnixDateTimeToString(Long unixDateTime) { java.util.Date time = new java.util.Date(unixDateTime); DateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm", Locale.ENGLISH); return dateFormat.format(time); } }