结果
上述代码示例将产生以下结果。结果可能因系统时间而异。
Sat Oct 18 19:58:20 GMT+05:30 2008
true
Sat Oct 18 19:58:20 GMT+05:30 2008
下面是java中文件最后修改时间的另一个示例
import java.io.File;
import java.text.SimpleDateFormat;
public class GetFileLastModifiedExample {
public static void main(String[] args) {
File f1 = new File("C:\\\\Users\\\\TutorialsPoint7\\\\Desktop\\\\abc.png");
System.out.println("Before Format : " + f1.lastModified());
SimpleDateFormat sdf = new SimpleDateFormat("MM/dd/yyyy HH:mm:ss");
System.out.println("After Format : " + sdf.format(f1.lastModified()));
}
}
上面的代码示例将产生以下结果。结果可能因系统时间而异。
Before Format : 1473659371467
After Format : 09/12/2016 11:19:31