Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What is the most elegant way to get ISO 8601 formatted presentation of current moment, UTC? It should look like: 2010-10-12T08:50Z.

share|improve this question

9 Answers

up vote 39 down vote accepted

Use SimpleDateFormat to format any Date object you want:

DateFormat df = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm'Z'");
String nowAsString = df.format(new Date());

Using a new Date() as shown above will format the current time.

share|improve this answer
3  
@Joachim The negative side of this "standard" approach is that I have to have many instances of "yyyy-MM-dd'T'HH:mmZ" in my application, every time I need an ISO-8601 formatted date. With JodaTime, as I see, I can use a pre-defined formatter ISODateTimeFormat, which does this job for me.. – yegor256 Oct 12 '10 at 12:18
8  
Why? Just save a reference to the DateFormat object in an isoDateTimeFormat variable... – aioobe Oct 12 '10 at 12:23
3  
@Joachim, Z is valid pattern in SimpleDateFormat, rather do this: yyyy-MM-dd'T'HH:mm'Z'. – Buhake Sindi Oct 12 '10 at 12:43
4  
@aioobe: SimpleDateFormat is not thread safe, so if your application is multithreaded, you can just keep a single reference around. – Tom Tresansky Oct 12 '10 at 13:43
9  
-1 This gives you the date/time in the current timezone - not UTC. Carlos' answer includes the necessary UTC code. – Scott Rippey Mar 30 '12 at 16:15
show 3 more comments

for systems where the default Time Zone is not UTC:

    TimeZone tz = TimeZone.getTimeZone("UTC");
    DateFormat df = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm'Z'");
    df.setTimeZone(tz);
    String nowAsISO = df.format(new Date());

The SimpleDateFormat instance may be declared as a global constant if needed frequently, but beware that this class is not thread-safe. It must be synchronized if accessed concurrently by multiple threads.

EDIT: I would prefer Joda Time if doing many different Times/Date manipulations...
EDIT2: corrected: setTimeZone does not accept a String (corrected by Paul)

share|improve this answer
1  
+1 for addressing the UTC part of the question. -1 because setTimeZone() takes a TimeZone, not a String :) – Paul Bellora Mar 6 '12 at 18:11
@PaulBellora Thanks! Corrected... – Carlos Heuberger Mar 7 '12 at 9:47

use JodaTime

The ISO 8601 calendar system is the default implementation within Joda-Time

Here is the doc for JodaTime Formatter

Edit:

If you don't want to add or if you don't see value of adding above library you could just use in built SimpleDateFormat class to format the Date to required ISO format

as suggested by @Joachim Sauer

DateFormat df = new SimpleDateFormat("yyyy-MM-dd'T'HH:mmZ");
String nowAsString = df.format(new Date());
share|improve this answer
2  
And how would you produce a String formated as shown in the question? – Joachim Sauer Oct 12 '10 at 12:12
4  
I'd say don't add a library-dependency for something as simple as this (which can be achieved with two lines of java-code). (Sure, if the requirements grows, it's another story.) – aioobe Oct 12 '10 at 12:14
5  
@aioobe jodatime is better in any case, because it has ISODateTimeFormat -- a predefined formatter of ISO-8601. – yegor256 Oct 12 '10 at 12:19
4  
Really jodatime for this? That is just bull... – dacwe Oct 12 '10 at 13:13
3  
@org.life.java: which are only relevant when you can switch to Jode time properly. You won't have them, when you use only this function of Joda time. – Joachim Sauer Oct 12 '10 at 13:29
show 3 more comments

This would also do:

thisMoment = String.format("%tFT%<tRZ", new Date());

From the docs:

'R'    Time formatted for the 24-hour clock as "%tH:%tM"
'F'    ISO 8601 complete date formatted as "%tY-%tm-%td".


If you're concerned with duplicating this code in multiple places in your code, you could simply encapsulate it in a static method in a class,

public class Iso8601Util {
    public static String now() { return String.format("%tFT%<tRZ", new Date()); }
}

and do String str = Iso8601Util.now(); wherever you need todays date as an ISO-formatted string.

share|improve this answer
@aioobe Again, string "%tFT%<tRZ" is hard-coded into the application, which smells like a poor design for me. Isn't it? – yegor256 Oct 12 '10 at 12:20
Just encapsulate it into a class then? Introducing dependencies for the sake of formatting todays date smells like bit rot to me. – aioobe Oct 12 '10 at 12:21
@aioobe And then I have to give an access to this class to all other classes that need date/time formatting? And from other packages? Looks like re-inventing joda (or something similar), don't you think so? – yegor256 Oct 12 '10 at 12:28
4  
Well, either you include an extra third-party library as a dependency to your project (which you may want to keep up to date, and ship with your application, hey, it's just an extra 3.2 megabytes) and do DateTime dt = new DateTime(); DateTimeFormatter fmt = ISODateTimeFormat.dateTime(); String str = fmt.print(dt);, or you do encapsulate return String.format("%tFT%<tRZ", new Date()); into a class, and do str = Iso8601Time.now(), where ever you need it. (It's not like the ISO format is going to change.) If it turns out that you need more than just current date in ISO format, use a lib. – aioobe Oct 12 '10 at 12:36
1  
Totally agree with this. – yegor256 Oct 12 '10 at 13:29
show 2 more comments

Here's a whole class optimized so that invoking "now()" doesn't do anything more that it has to do.

public class Iso8601Util
{
    private static TimeZone tz = TimeZone.getTimeZone("UTC");
    private static DateFormat df = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm'Z'");

    static
    {
        df.setTimeZone(tz);
    }

    public static String now()
    {
        return df.format(new Date());
    }
}
share|improve this answer
1  
Making it static may cause trouble as SimpleDateFormat is not thread safe: "Date formats are not synchronized. It is recommended to create separate format instances for each thread. If multiple threads access a format concurrently, it must be synchronized externally." docs.oracle.com/javase/7/docs/api/java/text/… – Juha Palomäki Feb 7 at 21:10

If you don't want to include Jodatime (as nice as it is)

javax.xml.bind.DatatypeConverter.printDateTime(
    Calendar.getInstance(TimeZone.getTimeZone("UTC"))
);

which returns a string of:

2012-07-10T16:02:48.440Z

which is slightly different to the original request but is still ISO-8601.

share|improve this answer

DateFormatUtils from Apache commons-lang3 have useful constants, for example: DateFormatUtils.ISO_TIME_FORMAT

share|improve this answer

jdk7 has now support for ISO 8601 format.

share|improve this answer

Try This,

SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss.SSSSSSSZ");
        String date=sdf.format (new Date() );

Its For ISO 8601 format

share|improve this answer
This would use dates in the wrong time zone, see answer by Carlos. – Stian Soiland-Reyes Mar 25 at 15:31

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.