Here you can find the source of convertMsToSimpleDate(long Millis)
public static String convertMsToSimpleDate(long Millis)
//package com.java2s; //License from project: Open Source License import java.text.DateFormat; import java.text.SimpleDateFormat; import java.util.Date; public class Main { public static String convertMsToSimpleDate(long Millis) { DateFormat formatter = new SimpleDateFormat("MM-dd-yyyy"); return formatter.format(new Date(Millis)); }/*from w ww . ja v a 2s . c o m*/ }