目录

boolean setLastModified(long time)

描述 (Description)

java.io.File.setLastModified(long time)方法设置由抽象路径名指示的文件的最后修改日期。

声明 (Declaration)

以下是java.io.File.setLastModified(long time)方法的声明 -

public boolean setLastModified(long time)

参数 (Parameters)

time - 自纪元以来新的上次修改时间(以毫秒为单位)。

返回值 (Return Value)

如果操作成功,则此方法返回true,否则返回false。

异常 (Exception)

SecurityException - 如果存在安全管理器且其方法拒绝对旧路径名或新路径名的写访问权。

例子 (Example)

以下示例显示了java.io.File.setLastModified(长时间)方法的用法。

package com.iowiki;
import java.io.File;
import java.text.SimpleDateFormat;
import java.util.Date;
public class FileDemo {
   public static void main(String[] args) {      
      File f = null;
      boolean bool = false;
      int year, month, day;
      long millisec;
      Date dt;
      try {
         // create new File object
         f = new File("C:/test.txt");
         // date components
         year = 2013; 
         month = 04; 
         day = 15;
         // date in string
         String s = year+"/"+month+"/"+day;
         // date format
         SimpleDateFormat sdf = new SimpleDateFormat("yyyy/mm/dd");
         // parse string to date object
         dt = sdf.parse(s);
         // calculate milliseconds
         millisec = dt.getTime();
         // returns true if file exists
         bool = f.exists();
         // if file exists
         if(bool) {
            // set last modified time
            bool = f.setLastModified(millisec);
            // print
            System.out.println("lastModified() succeeded?: "+bool);
            // last modified time
            millisec = f.lastModified();
            // calculate date object
            dt = new Date(millisec);
            // prints
            System.out.print("File was last modified on: "+dt);
         }
      } catch(Exception e) {
         // if any error occurs
         e.printStackTrace();
      }
   }
}

让我们编译并运行上面的程序,这将产生以下结果 -

lastModified() succeeded?: true
File was last modified on: Tue Jan 15 00:04:00 IST 2013
↑回到顶部↑
WIKI教程 @2018