Date d = new Date(file.lastModified());
lastModified() returns the milliseconds since 1970-01-01, and the Date class stores its time also in the same way. The Date(long) constructor takes these milliseconds, and initializes the Date with it.