NOTE: This is answered already excellently in the JDK world here, but the accepted answer doesn't apply to the Android port of JSR-310 which doesn't have that extended API for Date.
So, what is the best way to convert a java.util.Date
to org.threeten.bp.LocalDate
?
Date input = new Date();
LocalDate date = ???