Results 1 to 2 of 2

Thread: modification date

  1. #1
    CarterWatson is offline Senior Member
    Join Date
    Dec 2009
    Posts
    189
    Rep Power
    3

    Default modification date

    I am learning JAVA programming language. I am doing one live project where I use java as front end and SQL as back end. In my project I have to show last modification date of file. I tried different methods. But not any of them worked out. Can anybody tell me how to get a file last modification date in java? Any suggestion.
    Thank you.
    Last edited by CarterWatson; 02-06-2010 at 04:03 PM.

  2. #2
    MoralesWard is offline Senior Member
    Join Date
    Dec 2009
    Posts
    176
    Rep Power
    3

    Default

    It is very simple procedure to get a file last modification date in java. You have to generate an instance of file object to do this. I have written following program for you. In that program I have use one variable named "lastModified file" to save last modified date of that file.

    import java.io.File;
    import java.util.Date;
    public class FLModificationDate
    {
    public static void main(String[] args)
    {
    File file1 = new File("testfile.java");
    Long lastModifiedfile = file.lastModified();
    Date dat = new Date(lastModifiedfile);
    System.out.println(dat);
    }
    }

Similar Threads

  1. Win Up Windows XP up to date
    By Denis Jacob in forum Windows XP
    Replies: 0
    Last Post: 11-08-2010, 02:26 PM
  2. Date Reminder
    By John Fanwryghte in forum Download Tools and Softwares
    Replies: 0
    Last Post: 09-06-2010, 08:31 PM
  3. How To spawn a Date in C#
    By Davisricky in forum Programming
    Replies: 0
    Last Post: 05-06-2010, 03:40 PM
  4. How can I tell if my computer is up to date?
    By Bratton Clovelly in forum Windows Vista
    Replies: 0
    Last Post: 08-09-2009, 10:29 AM
  5. Keep software up-to-date
    By Fabian Nadal in forum Everything Else
    Replies: 0
    Last Post: 08-04-2009, 11:08 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
SEO by SubmitEdge

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48