當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java Java.io.File.setLastModified()用法及代碼示例



描述

這個java.io.File.setLastModified(long time)方法設置由抽象路徑名指示的文件的最後修改日期。

聲明

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

public boolean setLastModified(long time)

參數

time- 自紀元以來的新 last-modified 時間(以毫秒為單位)。

返回值

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

異常

SecurityException− 如果安全管理器存在且其方法拒絕對舊路徑名或新路徑名的寫訪問。

示例

下麵的例子展示了 java.io.File.setLastModified(long time) 方法的用法。

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("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

相關用法


注:本文由純淨天空篩選整理自 Java.io.File.setLastModified() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。