Java - File setLastModified() 方法



.

描述

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

声明

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

public boolean setLastModified(long time)

参数

time - 自纪元以来的毫秒数,表示新的最后修改时间。

返回值

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

异常

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

示例 1

以下示例演示了 Java File setLastModified() 方法的用法。我们创建了一个 File 引用。然后,我们使用给定位置中存在的 filepath 创建一个 File 对象。现在,我们使用年份、月份和日期值创建了一个日期对象,并使用 setLastModified() 设置最后修改日期,然后打印它。

package com.tutorialspoint;
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("F:/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

示例 2

以下示例演示了 Java File setLastModified() 方法的用法。我们创建了一个 File 引用。然后,我们使用当前位置中存在的 filepath 创建一个 File 对象。现在,我们使用年份、月份和日期值创建了一个日期对象,并使用 setLastModified() 设置最后修改日期,然后打印它。

package com.tutorialspoint;
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("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
java_file_class.htm
广告