When I try to run the following code:
LocalTime test = LocalTime.parse(\"8:00am\", DateTimeFormatter.ofPattern(\"hh:mma\"));
I get this:
LocalTime lt=LocalTime.parse("08:00p.m.",DateTimeFormatter.ofPattern("hh:mma"));
if you put a.m. or p.m. it works but AM or PM not working. i am using openjdk 11 and openjdk 14, i think it is a bug.