8

我有以下代码:

String dateInString = "2016-09-18T12:17:21:000Z";
Instant instant = Instant.parse(dateInString);

ZonedDateTime zonedDateTime = instant.atZone(ZoneId.of("Europe/Kiev"));
System.out.println(zonedDateTime);

它给了我以下例外:

线程“主”java.time.format.DateTimeParseException 中的异常:无法在 java.time.format.DateTimeFormatter.parseResolved0(DateTimeFormatter.java: 1949) 在 java.time.format.DateTimeFormatter.parse(DateTimeFormatter.java:1851) 在 java.time.Instant.parse(Instant.java:395) 在 core.domain.converters.TestDateTime.main(TestDateTime.java:10 )

当我将最后一个冒号更改为句号时:

String dateInString = "2016-09-18T12:17:21.000Z";

…然后执行顺利:

2016-09-18T15:17:21+03:00[欧洲/基辅]

所以,问题是 - 如何用Instantand解析日期DateTimeFormatter

4

3 回答 3

8

“问题”是毫秒前的冒号,这是非标准的(标准是小数点)。

要使其工作,您必须DateTimeFormatter为您的自定义格式构建一个自定义:

String dateInString = "2016-09-18T12:17:21:000Z";
DateTimeFormatter formatter = new DateTimeFormatterBuilder()
    .append(DateTimeFormatter.ISO_DATE_TIME)
    .appendLiteral(':')
    .appendFraction(ChronoField.MILLI_OF_SECOND, 3, 3, false)
    .appendLiteral('Z')
    .toFormatter();
LocalDateTime instant = LocalDateTime.parse(dateInString, formatter);
ZonedDateTime zonedDateTime = instant.atZone(ZoneId.of("Europe/Kiev"));
System.out.println(zonedDateTime);

此代码的输出:

2016-09-18T12:17:21+03:00[Europe/Kiev]

如果您的日期时间文字有一个点而不是最后一个冒号,事情会简单得多。

于 2017-02-10T20:41:50.330 回答
1

使用SimpleDateFormat

String dateInString = "2016-09-18T12:17:21:000Z";
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss:SSS");
Instant instant = sdf.parse(dateInString).toInstant();
ZonedDateTime zonedDateTime = instant.atZone(ZoneId.of("Europe/Kiev"));
System.out.println(zonedDateTime);

2016-09-18T19:17:21+03:00[欧洲/基辅]

于 2017-02-10T20:22:15.867 回答
-3
DateTimeFormatter formatter = DateTimeFormatter.ofPattern("d/MM/yyyy");

String date = "16/08/2016";

//convert String to LocalDate
LocalDate localDate = LocalDate.parse(date, formatter);

如果String格式为ISO_LOCAL_DATE,则可以直接解析字符串,无需转换。

package com.mkyong.java8.date;

import java.time.LocalDate;

public class TestNewDate1 {

    public static void main(String[] argv) {

        String date = "2016-08-16";

        //default, ISO_LOCAL_DATE
        LocalDate localDate = LocalDate.parse(date);

        System.out.println(localDate);

    }

}

看看这个网站 网站在这里

于 2017-02-10T20:33:51.427 回答