我正在使用Joda和Local Date。我创建了一个自定义属性编辑器,它从视图中接收正确的值,如"23-05-2017"
,但当我尝试解析它时,我得到:
LocalDatePropertyEditor - Error Conversione DateTime
java.lang.IllegalArgumentException: Invalid format: "23-05-2017" is malformed at "-05-2017"
这是我的自定义编辑器:
public class LocalDatePropertyEditor extends PropertyEditorSupport{
private final DateTimeFormatter formatter;
final Logger logger = LoggerFactory.getLogger(LocalDatePropertyEditor.class);
public LocalDatePropertyEditor(Locale locale, MessageSource messageSource) {
this.formatter = DateTimeFormat.forPattern( messageSource.getMessage("dateTime_pattern", new Object[]{}, locale));
}
public String getAsText() {
LocalDate value = ( LocalDate ) getValue();
return value != null ? new LocalDate( value ).toString( formatter ) : "";
}
public void setAsText( String text ) throws IllegalArgumentException {
LocalDate val;
if (!text.isEmpty()){
try{
val = DateTimeFormat.forPattern("dd/MM/yyyy").parseLocalDate(text);
setValue(val);
}catch(Exception e){
logger.error("Errore Conversione DateTime",e);
setValue(null);
}
}else{
setValue(null);
}
}
}
在控制器里面我注册了它:
@InitBinder
protected void initBinder(final ServletRequestDataBinder binder, final Locale locale) {
binder.registerCustomEditor(LocalDate.class, new LocalDatePropertyEditor(locale, messageSource));
}
如何解决此错误?
答案 0 :(得分:1)
如果您的日期格式为23-05-2017
,则使用错误的模式。您应该使用dd-MM-yyyy
代替dd/MM/yyyy
。
答案 1 :(得分:0)
问题在于您用于解析LocalDate
。
而不是:
val = DateTimeFormat.forPattern("dd/MM/yyyy").parseLocalDate(text);
使用此:
val = DateTimeFormat.forPattern("dd-MM-yyyy").parseLocalDate(text);
答案 2 :(得分:0)
我测试了它,只需在控制器中使用以下命令, 您可以根据需要更改格式“ dd-MM-yyyy”。
@InitBinder
private void dateBinder(WebDataBinder binder) {
PropertyEditor editor = new PropertyEditorSupport() {
@Override
public void setAsText(String text) throws IllegalArgumentException {
if (!text.trim().isEmpty())
super.setValue(LocalDate.parse(text.trim(), DateTimeFormatter.ofPattern("dd-MM-yyyy")));
}
@Override
public String getAsText() {
if (super.getValue() == null)
return null;
LocalDate value = (LocalDate) super.getValue();
return value.format(DateTimeFormatter.ofPattern("dd-MM-yyyy"));
}
};
binder.registerCustomEditor(LocalDate.class, editor);
}