vote up 2 vote down star
long lastmodified = file.lastModified();
String lasmod =  /*TODO: Transform it to this format YYYY-MM-DD*/
flag

61% 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

5 Answers

vote up 12 vote down check

Something like:

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

See the javadoc for SimpleDateFormat.

link|flag
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
Although beware - SimpleDateFormat is not thread-safe – oxbow_lakes Oct 22 '08 at 16:58
vote up 2 vote down
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|flag
vote up 1 vote down
final Date modDate = new Date(lastmodified);
final SimpleDateFormat f = new SimpleDateFormat("yyyy-MM-dd");
final String lasmod = f.format(modDate);

SimpleDateFormat

link|flag
vote up 1 vote down

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|flag
vote up 0 vote down
Date d = new Date(lastmodified);
DateFormat form = new SimpleDateFormat("yyyy-MM-dd");
String lasmod = form.format(d);
link|flag
Lower case 'mm' is minute. – sblundy Oct 22 '08 at 16:48

Your Answer

Get an OpenID
or

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