Skip to content
Advertisement

Output RFC 3339 Timestamp in Java

I want to output a timestamp with a PST offset (e.g., 2008-11-13T13:23:30-08:00). java.util.SimpleDateFormat does not seem to output timezone offsets in the hour:minute format, it excludes the colon. Is there a simple way to get that timestamp in Java?

JavaScript

Also, SimpleDateFormat cannot properly parse the example above. It throws a ParseException.

JavaScript

Advertisement

Answer

Starting in Java 7, there’s the X pattern string for ISO8601 time zone. For strings in the format you describe, use XXX. See the documentation.

Sample:

JavaScript

Result:

JavaScript
User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement