Here you can find the source of convertLongToDateString(long mills, String format)
public static String convertLongToDateString(long mills, String format)
//package com.java2s; import java.text.SimpleDateFormat; public class Main { public static String convertLongToDateString(long mills, String format) { SimpleDateFormat sdf = new SimpleDateFormat(format); String date = sdf.format(mills); return date; }//w w w.j a va 2 s. co m }