码迷,mamicode.com
首页 > 编程语言 > 详细

【Java】如何获取文件的创建时间、更新时间

时间:2020-05-11 00:55:37      阅读:237      评论:0      收藏:0      [点我收藏+]

标签:one   exce   eid   catch   except   ada   获取   如何   ystemd   

一、通过下面方式

    BasicFileAttributes attr = null;
        try {
            Path path =  file.toPath();
            attr = Files.readAttributes(path, BasicFileAttributes.class);
        } catch (IOException e) {
            e.printStackTrace();
        }
        // 创建时间
        Instant instant = attr.creationTime().toInstant();

 

二、完整代码

public class ReadFileTimeUtils {

    public static String file = "/Users/zhangboqing/Downloads/testfileclassify copy/Archives/2020-21-07/11.dmg";

    public static void main(String[] args) throws IOException {

        File f = new File(file);
        System.out.println(getCreationTime(f));
//        Path file =  f.toPath();
//        BasicFileAttributes attr = Files.readAttributes(file, BasicFileAttributes.class);
//        System.out.println("creationTime: " + attr.creationTime());
//        System.out.println("lastAccessTime: " + attr.lastAccessTime());
//        System.out.println("lastModifiedTime: " + attr.lastModifiedTime());
    }


    public static String getCreationTime(File file) {
        if (file == null) {
            return null;
        }

        BasicFileAttributes attr = null;
        try {
            Path path =  file.toPath();
            attr = Files.readAttributes(path, BasicFileAttributes.class);
        } catch (IOException e) {
            e.printStackTrace();
        }
        // 创建时间
        Instant instant = attr.creationTime().toInstant();
        // 更新时间
//        Instant instant = attr.lastModifiedTime().toInstant();
        // 上次访问时间
//        Instant instant = attr.lastAccessTime().toInstant();
        String format = DateTimeFormatter.ofPattern("yyyy-MM-dd").withZone(ZoneId.systemDefault()).format(instant);
        return format;
    }
}  

 

【Java】如何获取文件的创建时间、更新时间

标签:one   exce   eid   catch   except   ada   获取   如何   ystemd   

原文地址:https://www.cnblogs.com/756623607-zhang/p/12866315.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!