[Solved] DateTimeFormatter fails to parse a date in JDK 17 where as passes in JDK8 [closed]

tl;dr OffsetDateTime .parse( “Wed, 20 Feb 2019 07:14:06 +0100” , DateTimeFormatter.RFC_1123_DATE_TIME ) .toString() 2019-02-20T07:14:06+01:00 Details Your problem has nothing to do with Java 8 versus Java 17. Tip: Before blaming software that is formally specified, is thoroughly tested by enormous test suites, and is used by millions of programmers daily, suspect your own code first. … Read more