Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Error while parsing 2018-05-01T00:00:00 date using Instant.parse

Here is my code which i am using to parse string using Instant.parse ,

String date = "2018-05-01T00:00:00";
Instant.parse(date)

And getting below error

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)

I cannot use other then Instant so looking solution for it only!

like image 904
Wit Wikky Avatar asked Jan 24 '26 01:01

Wit Wikky


1 Answers

Instant.parse will only accept the string that are in ISO INSTANT FORMAT

Obtains an instance of Instant from a text string such as 2007-12-03T10:15:30.00Z.

The string must represent a valid instant in UTC and is parsed using DateTimeFormatter.ISO_INSTANT.

But the String you have represents LocalDateTime. Like your input, a LocalDateTime represents only a date with time-of-day, but no offset nor time zone. So parse your input into LocalDateTime. You can then apply an offset or time zone to convert into Instant.

A date-time without a time-zone in the ISO-8601 calendar system, such as 2007-12-03T10:15:30.

LocalDateTime dateTime = LocalDateTime.parse(date);
Instant instant = dateTime.atZone(ZoneId.of("America/New_York")).toInstant();
like image 156
Deadpool Avatar answered Jan 25 '26 18:01

Deadpool



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!