Java: Get last modified time of a file
Java Input-Output: Exercise-7 with Solution
Write a Java program to determine the last modified date 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:
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.
It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.
https://w3resource.com/java-exercises/io/java-io-exercise-7.php
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics