Exception in thread "main" java.time.temporal.UnsupportedTemporalTypeException: Unsupported field: HourOfDay
at java.base/java.time.LocalDate.get0(LocalDate.java:709)
at java.base/java.time.LocalDate.getLong(LocalDate.java:688)
at java.base/java.time.format.DateTimePrintContext.getValue(DateTimePrintContext.java:308)
at java.base/java.time.format.DateTimeFormatterBuilder$NumberPrinterParser.format(DateTimeFormatterBuilder.java:2763)
at java.base/java.time.format.DateTimeFormatterBuilder$CompositePrinterParser.format(DateTimeFormatterBuilder.java:2402)
at java.base/java.time.format.DateTimeFormatterBuilder$CompositePrinterParser.format(DateTimeFormatterBuilder.java:2402)
at java.base/java.time.format.DateTimeFormatterBuilder$CompositePrinterParser.format(DateTimeFormatterBuilder.java:2402)
at java.base/java.time.format.DateTimeFormatter.formatTo(DateTimeFormatter.java:1849)
at java.base/java.time.format.DateTimeFormatter.format(DateTimeFormatter.java:1823)
at java.base/java.time.LocalDate.format(LocalDate.java:1813)
The Problem
LocalDate.parse("2014-05-04") correctly parses the string into a LocalDate object representing May 4, 2014.
However, when you try to format this LocalDate with DateTimeFormatter.ISO_DATE_TIME, it throws an error because ISO_DATE_TIME expects both date and time components, but LocalDate only contains date information.
Correct Answer is (d)
Exception is thrown as datetime formatter requires both date and time and only date is being provided here.
It will work fine if below is the input
String date = LocalDate.parse("2014-05-04").format(DateTimeFormatter.ISO_DATE);
A voting comment increases the vote count for the chosen answer by one.
Upvoting a comment with a selected answer will also increase the vote count towards that answer by one.
So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.
letmein2
Highly Voted 5 years, 7 months agoGyzmou
4 years, 4 months agovic88
Most Recent 2 months, 2 weeks agoElanche
3 months, 2 weeks agonuray
10 months, 1 week agoDibya17
11 months agofvelazqueznava
1 year, 1 month agogg7495
1 year, 2 months agoOndo
1 year, 2 months agoSezam
1 year, 3 months agodsms
1 year, 4 months agosina_
1 year, 4 months agoThando_4
1 year, 5 months agoNabilBenAsker
1 year, 5 months agofelipegomeztreufo
1 year, 6 months agoVicky_65
1 year, 8 months agowillokans
2 years agocarloswork
2 years, 1 month ago