Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有以下字符串“2013 年 11 月”。如何从中构造 LocalDateTime 对象?
这是我尝试过但不起作用的方法
LocalDateTime.parse(form.getSelectedMonthAndYear(),DateTimeFormat.forPattern("MM yy"));
该MM yy模式仅适用于我的DatePicker.
MM yy
DatePicker
您需要将此模式(MMM yyyy)用于字符串“November 2013”。
MMM yyyy
LocalDateTime.parse(form.getSelectedMonthAndYear(),DateTimeFormat.forPattern("MMM yyyy"));