File

Change File Last Modified date in Java example

In this example we are going to see how you can change the “Last Modified” date of a File in your File System in Java. We are simply going to use the setLastModified method of the File class. We are also going to see how you can parse a string with a date format to a Date object which is kind of cool.

So the basic steps to change the “Last Modified” date of file in Java are:

  • Use the SimpleDateFormat("MM/dd/yyyy") constructor to make a new SimpleDateFormat class instance.
  • Construct a String object with the “MM/dd/yyyy” format.
  • Use parse(String date) method of the SimpleDateFormat class to create a new Date object with the date value of the String.
  • Use File.setLastModified(Date.getTime()) method to set the new “Last Modified” date of the file.

Let’s see the code:

package com.javacodegeeks.java.core;

import java.io.File;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;

public class ChangeFileLastModifiedDate {

	public static final String filepath = "/home/nikos/Desktop/testFile.txt";

	public static void main(String[] args) {
		try {

			File file = new File(filepath);

			SimpleDateFormat dateFormat = new SimpleDateFormat("MM/dd/yyyy");

			// print the original Last Modified date
			System.out.println("Original Last Modified Date : "
					+ dateFormat.format(file.lastModified()));

			// set this date
			String newLastModifiedString = "01/31/1821";

			// we have to convert the above date to milliseconds...
			Date newLastModifiedDate = dateFormat.parse(newLastModifiedString);
			file.setLastModified(newLastModifiedDate.getTime());

			// print the new Last Modified date
			System.out.println("Lastest Last Modified Date : "
					+ dateFormat.format(file.lastModified()));

		} catch (ParseException e) {

			e.printStackTrace();

		}

	}

}

Output:

Original Last Modified Date : 02/21/2013
New Last Modified Date : 02/02/2000

 
This was an example on how to change the Last Modified date value of a File in your File System in Java.

Want to know how to develop your skillset to become a Java Rockstar?

Join our newsletter to start rocking!

To get you started we give you our best selling eBooks for FREE!

 

1. JPA Mini Book

2. JVM Troubleshooting Guide

3. JUnit Tutorial for Unit Testing

4. Java Annotations Tutorial

5. Java Interview Questions

6. Spring Interview Questions

7. Android UI Design

 

and many more ....

 

Receive Java & Developer job alerts in your Area

I have read and agree to the terms & conditions

 

Ilias Tsagklis

Ilias is a software developer turned online entrepreneur. He is co-founder and Executive Editor at Java Code Geeks.
Subscribe
Notify of
guest

This site uses Akismet to reduce spam. Learn how your comment data is processed.

0 Comments
Inline Feedbacks
View all comments
Back to top button