当前位置: 代码迷 >> Android >> 在Android上记录上次访问时间
  详细解决方案

在Android上记录上次访问时间

热度:129   发布时间:2023-08-04 12:47:44.0

有没有办法在Android中获取文件的lastAccess时间。 我知道如何使用java nio.file包来实现它,但Android对java 7的支持非常有限,不包括文件包。 我对lastModified不感兴趣,只有lastAccessed,因为我想删除最旧的读取??文件。

if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.LOLLIPOP) {
            StructStat stat = null;
            try {
                stat = Os.stat("/sdcard/Pictures/abc.jpg"); // File path here
            } catch (ErrnoException e) {
                e.printStackTrace();
            }
          long  t2 = stat.st_atime *1000L;
            Calendar calendar = Calendar.getInstance();
            calendar.setTimeInMillis(t2);

            SimpleDateFormat formatter =  new SimpleDateFormat("dd-MM-yyyy hh-MM-ss");
            String formattedDate = formatter.format(calendar.getTime());}

这仅适用于Lollipop API之上。

另请注意,st_atime以秒为单位返回时间,而不是以毫秒为单位。

  相关解决方案