“...在 org.bp.threeten.format.DateTimeFormatter 中不是 public” 尝试将 String 转换为 LocalDate 时出错
"... is not public in org.bp.threeten.format.DateTimeFormatter" error when trying to turn String to LocalDate
我正在尝试使用以下代码将字符串转换为 LocalDate
:
String end = sharedPref.getString("endDate", "Not available");
DateTimeFormatter formatter = new DateTimeFormatter("yyyy-MM-dd");
LocalDate endDate = LocalDate.parse(end, formatter);
但是显示标题中提到的错误。我如何解决它?
如果有更好的方法我愿意接受建议
我正在尝试使用以下代码将字符串转换为 LocalDate
:
String end = sharedPref.getString("endDate", "Not available");
DateTimeFormatter formatter = new DateTimeFormatter("yyyy-MM-dd");
LocalDate endDate = LocalDate.parse(end, formatter);
但是显示标题中提到的错误。我如何解决它? 如果有更好的方法我愿意接受建议