Home > Java > javaTutorial > body text

How to Parse ISO 8601 Dates with \'Z\' Literal Using SimpleDateFormat?

Susan Sarandon
Release: 2024-11-04 05:57:02
Original
339 people have browsed it

How to Parse ISO 8601 Dates with

Parsing ISO 8601 Dates with SimpleDateFormat and 'Z' Literal

Problem:

Attempting to parse an ISO 8601 date string containing the "Z" timezone literal using the SimpleDateFormat class with various patterns fails to return the correct UTC time. Specifically, the date "2010-04-05T17:16:00Z" is parsed as "Mon Apr 05 17:16:00 EDT 2010", despite the "Z" literal indicating UTC.

Solution:

The SimpleDateFormat class is unable to handle timestamps in ISO 8601 format by default. However, in Java 7, a new pattern was introduced to specifically handle this situation:

yyyy-MM-dd'T'HH:mm:ssX
Copy after login

This pattern expects the "X" timezone suffix, which can represent a "Z" literal to indicate UTC. When using this pattern, SimpleDateFormat correctly parses the date to its UTC equivalent.

Alternative Date Parser:

If SimpleDateFormat does not meet your needs, you can also consider using alternative date parsing libraries such as Joda-Time or ThreeTen-Backport, which have better support for ISO 8601 dates and timezone literals.

The above is the detailed content of How to Parse ISO 8601 Dates with \'Z\' Literal Using SimpleDateFormat?. For more information, please follow other related articles on the PHP Chinese website!

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Articles by Author
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template