Here you can find the source of TimeStamp2Date(long timestampString, String formats)
public static String TimeStamp2Date(long timestampString, String formats)
//package com.java2s; //License from project: Open Source License import java.text.SimpleDateFormat; import java.util.*; public class Main { public static String TimeStamp2Date(long timestampString, String formats) { Long timestamp = timestampString; String date = new SimpleDateFormat(formats).format(new Date( timestamp));/*from ww w .j a v a 2s. com*/ return date; } }