I am trying to convert the org.threeten.bp.LocalDate to java.util.Date and I am getting the error mentioned in the question title.
I am using following for conversion:
Date.from(currentDate.atStartOfDay(ZoneId.systemDefault()).toInstant());
Error:
from(java.time.Instant) in Date cannot be applied to (org.threeten.bp.instant)
I am trying to convert
- LocalDate to Date
- Date to LocalDate