欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

10、java获取文件最后的修改时间

程序员文章站 2022-05-24 12:28:01
...

package com.tij.io.file;

import java.io.File;
import java.util.Date;

/**
* 获取文件最后的修改日期
* @author guoyoujun
* @date 2014-3-17
*/
public class FileDate {

/**
* 调用file类的lastModified()返回最后修改的时间
* <p>如果文件不存在则返回O,得到date的初始日期
* @param args
*/
public static void main(String[] args) {
File file = new File("NewDB.properties");
long timestamp = file.lastModified();
System.out.println("最后修改的时间 = " + new Date(timestamp));

//out put==================
//NewDB.properties is exists
//最后修改的时间 = Sun Mar 16 16:53:12 CST 2014
//NewDB1.properties is not exists
//最后修改的时间 = Thu Jan 01 08:00:00 CST 1970
}
}