Java.io.File.lastModified()方法實例
java.io.File.lastModified() 返回表示此抽象路徑名的文件的最後修改時間。
聲明
以下是java.io.File.lastModified()方法的聲明:
public long lastModified()
參數
- NA
返回值
該方法返回表示此抽象路徑名的文件的最後修改時間。
異常
- SecurityException -- 如果安全管理器存在並且其SecurityManager.checkRead(java.lang.String) 方法拒絕對文件的讀訪問
例子
下面的示例演示java.io.File.lastModified()方法的用法。
package com.yiibai; import java.io.File; import java.util.Date; public class FileDemo { public static void main(String[] args) { File f = null; String path; long millisec; boolean bool = false; try{ // create new file f = new File("c:/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(); } } }
讓我們編譯和運行上面的程序,這將產生以下結果:
c: est.txt last modified at: Sat Jun 09 21:36:21 IST 2012