What is the most elegant way to get ISO 8601 formatted presentation of current moment, UTC? It should look like: 2010-10-12T08:50Z.
|
|
|||
|
|
Use
Using a |
|||||||||||||||||||||
|
|
for systems where the default Time Zone is not UTC:
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... |
|||||||
|
|
use JodaTime
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 as suggested by @Joachim Sauer
|
|||||||||||||||||||||
|
|
This would also do:
From the docs:
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,
and do |
|||||||||||||||
|
|
Here's a whole class optimized so that invoking "now()" doesn't do anything more that it has to do.
|
|||||
|
|
If you don't want to include Jodatime (as nice as it is)
which returns a string of:
which is slightly different to the original request but is still ISO-8601. |
|||
|
|
|
DateFormatUtils from Apache |
|||
|
|
|
Try This,
Its For ISO 8601 format |
|||
|


