我有以下代码:
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);
它给了我以下例外:
线程“main”中的异常java.time.format.DateTimeParseException: 文字'2016-09-18T12:17:21:000Z'无法在索引19处解析 java.time.format.DateTimeFormatter.parseResolved0(DateTimeFormatter.java:1949) 在 java.time.format.DateTimeFormatter.parse(DateTimeFormatter.java:1851) 在java.time.Instant.parse(Instant.java:395)at core.domain.converters.TestDateTime.main(TestDateTime.java:10)
当我将最后一个冒号改为句号时:
String dateInString = "2016-09-18T12:17:21.000Z";
...然后执行顺利:
2016-09-18T15:17:21 + 03:00 [欧洲/基辅]
所以,问题是 - 如何使用Instant
和DateTimeFormatter
解析日期?
答案 0 :(得分:6)
"问题"是毫秒之前的冒号,它是非标准的(标准是小数点)。
要使其正常运行,您必须为自定义格式构建自定义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]
如果你的日期时间字面值有一个点而不是最后一个冒号,事情会简单得多。
答案 1 :(得分: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 [欧洲/基辅]
答案 2 :(得分:-2)
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);
}
}
查看此网站 Site here