如何从android提供者日期调用日志转换日期?

时间:2012-07-05 09:11:53

标签: android android-contentprovider

我想从android提供商调用日志转换日期。实际日期是1341238489840。

int _DATE =  calls.getColumnIndex(android.provider.CallLog.Calls.DATE);
String date = calls.getString(_DATE);

2 个答案:

答案 0 :(得分:1)

使用SimpleDateFormat格式化日期。

  Date dt=new Date(1341238489840L);

答案 1 :(得分:0)

你可以使用我测试过的代码吗

public class CDate {
        public static void main(String[] args) {
            Date date = new Date(1341238489840L);
            System.out.println(new SimpleDateFormat("dd:MM:yyyy", Locale.ENGLISH)
                    .format(date));
        }
    }