Joda时间:如何将字符串转换为本地日期?
如何指定格式字符串以仅从字符串转换日期。在我的情况下,只有日期部分是相关的
将其构造为失败:DateTime
String dateString = "2009-04-17";
DateTimeFormatter formatter = DateTimeFormat.forPattern("yyyy-MM-dd");
DateTime dateTime = formatter.parseDateTime(dateString);
有错误java.lang.IllegalArgumentException: Invalid format: "2011-04-17" is too short
可能是因为我应该改用。但是,我没有看到任何格式化程序。转换成的最佳方式是什么(或者如果不是正确的表示,则转换为其他东西)LocalDate
LocalDate
String dateString = "2009-04-17";
LocalDate
谢谢。。。