Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

Java Exercises: Get last modified time of a file

Java Input-Output: Exercise-7 with Solution

Write a Java program to get last modified time of a file.

Sample Solution:

Java Code:

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

public class Example7 {
       public static void main(String[] args) {
       File file = new File("test.txt");
       Date date=new Date(file.lastModified());
	   System.out.println("\nThe file was last modified on: "+date+"\n");	   
     }
}

Sample Output:

The file was last modified on: Thu Jan 01 05:30:00 IST 1970

Flowchart:

Flowchart: Get last modified time of a file

Java Code Editor:

Contribute your code and comments through Disqus.

Previous: Write a Java program to compare two files lexicographically.
Next: Write Java program to read input from java console.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Java: Tips of the Day

How to sort an ArrayList?

Collections.sort(testList);
Collections.reverse(testList);

That will do what you want. Remember to import Collections though!

Ref: https://bit.ly/32urdSe