Java讀取檔案建立時間和最後修改時間

來源:互聯網
上載者:User

標籤:runtime   ring   break   file   ber   tar   dep   new   sim   

  1. import java.io.BufferedReader;  
  2. import java.io.File;  
  3. import java.io.IOException;  
  4. import java.io.InputStream;  
  5. import java.io.InputStreamReader;  
  6. import java.text.SimpleDateFormat;  
  7. import java.util.Calendar;  
  8.   
  9. /** 
  10.  * 讀取檔案建立時間和最後修改時間 
  11.  */  
  12. public class ReadFileTime {  
  13.   
  14.     public static void main(String[] args) {  
  15.         getCreateTime();  
  16.         getModifiedTime_1();  
  17.         getModifiedTime_2();          
  18.     }  
  19.   
  20.     /** 
  21.      * 讀取檔案建立時間 
  22.      */  
  23.     public static void getCreateTime(){  
  24.         String filePath = "C:\\test.txt";  
  25.         String strTime = null;  
  26.         try {  
  27.             Process p = Runtime.getRuntime().exec("cmd /C dir "           
  28.                     + filePath  
  29.                     + "/tc" );  
  30.             InputStream is = p.getInputStream();   
  31.             BufferedReader br = new BufferedReader(new InputStreamReader(is));             
  32.             String line;  
  33.             while((line = br.readLine()) != null){  
  34.                 if(line.endsWith(".txt")){  
  35.                     strTime = line.substring(0,17);  
  36.                     break;  
  37.                 }                             
  38.              }   
  39.         } catch (IOException e) {  
  40.             e.printStackTrace();  
  41.         }         
  42.         System.out.println("建立時間    " + strTime);     
  43.         //輸出:建立時間   2009-08-17  10:21  
  44.     }  
  45.     /** 
  46.      * 讀取檔案修改時間的方法1 
  47.      */   
  48.     @SuppressWarnings("deprecation")  
  49.     public static void getModifiedTime_1(){  
  50.         File f = new File("C:\\test.txt");              
  51.         Calendar cal = Calendar.getInstance();  
  52.         long time = f.lastModified();  
  53.         cal.setTimeInMillis(time);    
  54.         //此處toLocalString()方法是不推薦的,但是仍可輸出  
  55.         System.out.println("修改時間[1] " + cal.getTime().toLocaleString());   
  56.         //輸出:修改時間[1]    2009-8-17 10:32:38  
  57.     }  
  58.       
  59.     /** 
  60.      * 讀取修改時間的方法2 
  61.      */  
  62.     public static void getModifiedTime_2(){  
  63.         File f = new File("C:\\test.txt");              
  64.         Calendar cal = Calendar.getInstance();  
  65.         long time = f.lastModified();  
  66.         SimpleDateFormat formatter = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");         
  67.         cal.setTimeInMillis(time);    
  68.         System.out.println("修改時間[2] " + formatter.format(cal.getTime()));     
  69.         //輸出:修改時間[2]    2009-08-17 10:32:38  
  70.     }  
  71. }  

Java讀取檔案建立時間和最後修改時間

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.