Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

File Modification time..

 
Ranch Hand
Posts: 151
MyEclipse IDE Python Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Report post to moderator
i have text file that i m modifying after an interval but i m getting the same time after modification too here is the code

import java.io.File;
import java.sql.Time;
import java.util.Date;

public class Execute {
//private LoadLinkifyIndeedTerm myThread;

public static void main(String[] args) {
// Create an instance of file object.
File file = new File("test.txt");
// Get the last modification information.
Long lastModified = file.lastModified();

// Create a new date object and pass last modified information
// to the date object.
Date date = new Date(lastModified);
Time time= new Time(lastModified);

// We know when the last time the file was modified.
System.out.println(date);
System.out.println(time);
}
}


i want to kknow the last modification time of the file
thanks in advance
 
Sheriff
Posts: 14691
16
Eclipse IDE VI Editor Ubuntu
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Report post to moderator
Do not duplicate threads. Continue there.
 
With a little knowledge, a cast iron skillet is non-stick and lasts a lifetime.
    Bookmark Topic Watch Topic
  • New Topic