To get file last modification date we can use the lastModified()
method of the File
class. This method returns a long
value. After getting this value you can create an instance of java.util.Date
class and pass this value as the parameter. This Date
will hold the file’s last modification date.
package org.kodejava.io;
import java.io.File;
import java.util.Date;
public class FileLastModificationDate {
public static void main(String[] args) {
// Create an instance of file object.
File file = new File("README.md");
if (file.exists()) {
// 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);
// We know when the last time the file was modified.
System.out.println(date);
}
}
}
Latest posts by Wayan (see all)
- How do I handle cookies using Jakarta Servlet API? - April 19, 2025
- How do I set response headers with HttpServletResponse? - April 18, 2025
- How do I apply gain and balance using FloatControl? - April 18, 2025