long lastmodified = file.lastModified();
String lasmod =  /*TODO: Transform it to this format YYYY-MM-DD*/
link|improve this question

60% accept rate
Do you mean YYYY-MM-DD? – Joel Coehoorn Oct 22 '08 at 16:41
yes, i edited the question. Año = Year in spanish – Sergio del Amo Oct 22 '08 at 16:43
feedback

5 Answers

up vote 13 down vote accepted

Something like:

Date lm = new Date(lastmodified);
String lasmod = new SimpleDateFormat("yyyy-MM-dd").format(lm);

See the javadoc for SimpleDateFormat.

link|improve this answer
Just to state the obvious here, if you're doing this in the context of a long-lived object or in a loop, you probably want to construct the SimpleDateFormat object once and reuse it. – nsayer Oct 22 '08 at 16:52
1  
Although beware - SimpleDateFormat is not thread-safe – oxbow_lakes Oct 22 '08 at 16:58
feedback
String lasmod = new SimpleDateFormat("yyyy-MM-dd").format(new Date(lastmodified));

Look up the correct pattern you want for SimpleDateFormat... I may have included the wrong one from memory.

link|improve this answer
feedback
final Date modDate = new Date(lastmodified);
final SimpleDateFormat f = new SimpleDateFormat("yyyy-MM-dd");
final String lasmod = f.format(modDate);

SimpleDateFormat

link|improve this answer
feedback

Try:

import java.text.SimpleDateFormat;
import java.util.Date;

long lastmodified = file.lastModified();
SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd");
String lastmod =  format.format(new Date(lastmodified));
link|improve this answer
feedback
Date d = new Date(lastmodified);
DateFormat form = new SimpleDateFormat("yyyy-MM-dd");
String lasmod = form.format(d);
link|improve this answer
Lower case 'mm' is minute. – sblundy Oct 22 '08 at 16:48
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.