java

Ben Sless 2022-12-18T14:20:11.570359Z

Anyone know how java.time.format.DateTimeFormatter changed since java 8? I have an Instant that I serialized with .toString in java 17, I can parse it in 17 and 15 but not in 11 or 8 This is the string 2022-12-18T12:00:25.840823567-00:00

viesti 2022-12-18T20:21:52.749589Z

I wonder if it’s related to this https://stackoverflow.com/a/69033040

Ben Sless 2022-12-18T20:28:13.835739Z

Ended up changing the -00:00 to Z and it worked 🫣

🫣 1