Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

What's wrong with

public String toString() {
    return super.toString()
            + String.format(" %1$F-%2$F", startDate, endDate);
}

I get

Caused by: java.util.UnknownFormatConversionException: Conversion = 'F' at java.util.Formatter$FormatSpecifier.conversion(Formatter.java:2606) at java.util.Formatter$FormatSpecifier.(Formatter.java:2634) at java.util.Formatter.parse(Formatter.java:2480) at java.util.Formatter.format(Formatter.java:2414) at java.util.Formatter.format(Formatter.java:2367) at java.lang.String.format(String.java:2769)

I wanted to print the ISO 8601 date defined in java.util.Formatter

share|improve this question
How about using T for date/time. I don't know what F does. – Peter Lawrey Oct 11 '12 at 9:56

1 Answer

up vote 1 down vote accepted

I think the date formatting patterns require a prefix:

't', 'T'    date/time   Prefix for date and time conversion characters. See Date/Time Conversions. 

The example for the F modifier also shows this syntax:

'F'     ISO 8601 complete date formatted as "%tY-%tm-%td". 

So the following pattern should work:

String.format(" %1$tF-%2$tF", startDate, endDate);
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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