java編程之怎樣把Long轉換成Date的日期格式?
/** * 把毫秒轉化成日期 * @param dateFormat(日期格式,例如:MM/ dd/yyyy HH:mm:ss) * @param millSec(毫秒數) * @return */ private String transferLongToDate(String dateFormat,Long millSec){ SimpleDateFormat sdf = new SimpleDateFormat(dateFormat)
; Date date= new Date(millSec)
; return sdf.format(date); }