I have LocalDateTime
values and want to make use of the ISO_LOCAL_DATE_TIME
constant to print only up to the minutes.
Both testcases fail with:
Expected :2020-10-10T15:16
Actual :2020-10-10T15:16:00
But why?
assertEquals("2020-10-10T15:16", LocalDateTime.parse("2020-10-10T15:16:17")
.truncatedTo(ChronoUnit.MINUTES)
.format(DateTimeFormatter.ISO_LOCAL_DATE_TIME));
assertEquals("2020-10-10T15:16", DateTimeFormatter.ISO_LOCAL_DATE_TIME.format(
LocalDateTime.parse("2020-10-10T15:16:17").truncatedTo(ChronoUnit.MINUTES)));
Beside that: where is the difference between using the first or second approach to format a LocalDateTime
value?
You do not need a formatter for your use case
The
LocalDateTime#toString
by default omits second-of-minute and nano-of-second fields if they are zero.LocalDateTime#truncatedTo(ChronoUnit.MINUTES)
sets the second-of-minute and nano-of-second fields to zero.Thus, you do not need a formatter for your use case.
Demo:
Output: