4

可能重复:
如何在android中将毫秒转换为日期格式?

我有一个毫秒字符串,想将其转换为日期字符串。

像这样:

毫秒:1345032624325E12 -> 日期:2012 年 8 月 15 日星期三 14:10:24

我怎样才能做到这一点?

4

1 回答 1

6

希望这有助于 如何在android中将毫秒转换为日期格式?

 private String getDate(long milliSeconds, String dateFormat)
    {
        // Create a DateFormatter object for displaying date in specified format.
        DateFormat formatter = new SimpleDateFormat(dateFormat);

        // Create a calendar object that will convert the date and time value in milliseconds to date. 
         Calendar calendar = Calendar.getInstance();
         calendar.setTimeInMillis(milliSeconds);
         return formatter.format(calendar.getTime());
    }
于 2012-08-15T12:41:17.587 回答