Parsing ISO 8601 date format like 2015-06-27T13:16

2019-01-02 16:00发布

This question already has an answer here:

I am trying to parse a String using SimpleDateFormat.

This is my current code:

public String getCreatedDateTime() {
    SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-ddEHH:mm:ss.zzzz");
    try {
        Date date = simpleDateFormat.parse("2015-06-27T13:16:37.363Z");
        return date.toString();
    } catch (ParseException e) {
        return "Error parsing date";
    }
}

As you can see, I just put a constant in the parse() method for testing purposes.

So, this is what I am trying to parse:

2015-06-27T13:16:37.363Z

This is the SimpleDateFormat pattern that I am using:

yyyy-MM-ddEHH:mm:ss.zzzz

I keep getting the ParseException.

I know that it is proably because of the .zzzz at the end but I have no idea what .363Z might stand for so I just used some random letters. Bad idea.

I'll appreciate your help a lot. Thank you!

2条回答
梦该遗忘
2楼-- · 2019-01-02 16:44

Try with this pattern (note the X at the end and the 'T' in the middle):

"yyyy-MM-dd'T'HH:mm:ss.SSSX"

From Java's SimpleDateFormat's documentation:

ISO 8601 Time zone:

...

For parsing, "Z" is parsed as the UTC time zone designator.

And, from the part where it describes the different characters:

X - Time zone - ISO 8601 time zone

EDIT

If using Android, then "X" is not supported.

You can use this pattern (note Z is a literal now):

"yyyy-MM-dd'T'HH:mm:ss.SSS'Z'"

But then you'll get the date on your current timezone and would need to convert it to UTC if needed.

查看更多
浮光初槿花落
3楼-- · 2019-01-02 17:00

tl;dr

Skip the formatting pattern. Standard ISO 8601 format is used by default.

Instant.parse( "2015-06-27T13:16:37.363Z" )

ISO 8601

Your string format is formally defined by the ISO 8601 standard.

Basically your Question is a duplicate of this one, Converting ISO 8601-compliant String to java.util.Date.

Alternatives

The Answer by eugenioy is correct.

But you should know that the old java.util.Date/.Calendar/java.text.SimpleDateFormat classes bundled with Java are notoriously troublesome and should be avoided.

Outmoded Classes

Those old classes are now outmoded, first by the third-party Joda-Time library, and now by the new java.time package (Tutorial) built into Java 8 and later (inspired by Joda-Time, defined by JSR 310, extended by the ThreeTen-Extra project).

Both java.time and Joda-Time use the ISO 8601 standard as their defaults when parsing/generating string representations of date-time values. So the code is simple, no need for custom formatter objects. No need for all that format twiddling that caused your Exception.

Time Zone

Both java.time and Joda-Time have a zoned date-time class that understands its assigned time zone (unlike java.util.Date). If you do not assign one, the JVM’s current default time zone is assigned.

Beware that the JVM’s current default time zone can change at any time. It can change at deployment, defaulting to whatever the host OS setting is. And it can change at any moment during runtime when any code in any thread of any app within the JVM calls TimeZone.setDefault. So better to explicitly assign a desired/expected time zone.

java.time

The Z on the end of your string is short for Zulu and means UTC. The Instant class can directly parse that format, to represent a moment on the timeline in UTC with a resolution in nanoseconds.

String input = "2015-06-27T13:16:37.363Z";
Instant instant = Instant.parse( input );

Change the time zone from UTC to some desired/expected time zone.

ZoneID zone = ZoneId.of( "America/Montreal" ) ;
ZonedDateTime zdtMontréal = instant.atZone( zone ) ;

If you really need a java.util.Date for interoperability, convert.

java.util.Date utilDate = Date.from( zdtMontréal.toInstant() ) ;

Joda-Time

The Joda-Time project is now in maintenance mode, with the team advising migration to the java.time classes:

Note that from Java SE 8 onwards, users are asked to migrate to java.time (JSR-310) - a core part of the JDK which replaces this project.

Example code using Joda-Time 2.8.1.

String input = "2015-06-27T13:16:37.363Z" ;
DateTimeZone zone = DateTimeZone.UTC ;  //  Or: DateTimeZone.forID( "America/Montreal" ) ;
DateTime dateTime = new DateTime( input, zone ) ;

If you really need a java.util.Date for interoperability, convert.

java.util.Date date = dateTime.toDate();
查看更多
登录 后发表回答