这是我用来使用 Instant.parse 解析字符串的代码,
String date = "2018-05-01T00:00:00";
Instant.parse(date)
并低于错误
java.time.format.DateTimeParseException: Text '2018-05-01T00:00:00' could not be parsed at index 19
at java.time.format.DateTimeFormatter.parseResolved0(DateTimeFormatter.java:1949)
at java.time.format.DateTimeFormatter.parse(DateTimeFormatter.java:1851)
at java.time.Instant.parse(Instant.java:395)
我不能使用其他Instant所以只能寻找解决方案!