Java File lastModified()方法
java.io.File.lastModified() 返回表示此抽象路径名的文件的最后修改时间。
1 语法
public long lastModified()
2 参数
无
3 返回值
该方法返回表示此抽象路径名的文件的最后修改时间。
4 示例
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
/**
* java.io.File.lastModified()方法的例子
*/
import java.io.File;
import java.util.Date;
public class Demo {
public static void main(String[] args) {
File f = null;
String path;
long millisec;
boolean bool = false;
try {
// create new file
f = new File("d:/test.txt");
// true if the file path is a file, else false
bool = f.exists();
// if path exists
if(bool) {
// returns the time file was last modified
millisec = f.lastModified();
// date and time
Date dt = new Date(millisec);
// path
path = f.getPath();
// print
System.out.print(path+" last modified at: "+dt);
}
} catch(Exception e) {
// if any error occurs
e.printStackTrace();
}
}
}
输出结果为:
d:\test.txt last modified at: Fri May 29 07:24:09 CST 2020
热门文章
优秀文章