4

重複の可能性:
アンドロイドでミリ秒を日付形式に変換する方法は?

ミリ秒文字列があり、それを日付文字列に変換したいと考えています。

このような:

ミリ秒: 1345032624325E12 -> 日付: 2012 年 8 月 15 日水曜日 14:10:24

これどうやってするの?

4

1 に答える 1

6

これがアンドロイドでミリ秒を日付形式に変換する方法に役立つことを願っています か?

 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 に答える