4

是否可以在 Spring MVC 控制器中处理不同的日期格式?

我知道设置这样的东西

@InitBinder
protected void initBinder(WebDataBinder binder) {
    SimpleDateFormat dateFormat = new SimpleDateFormat("dd/MM/yyyy");
    binder.registerCustomEditor(Date.class, new CustomDateEditor(
            dateFormat, false));
}

我可以处理dd/MM/yyyy格式,但是如果我还想解析yyyyMMddhhmmss格式的日期怎么办?我应该在控制器中添加多个CustomDateEditors 吗?

4

6 回答 6

5

如果您仅在特定情况下需要它,您可以注册附加到表单中的字段的自定义编辑器:

DateFormat dateFormat = new SimpleDateFormat("dd/MM/yyyy", this.getLocale(context));
DateFormat dateTimeFormat = new SimpleDateFormat("dd/MM/yyyy HH:mm:ss SSS", this.getLocale(context));
binder.registerCustomEditor(Date.class, new CustomDateEditor(dateTimeFormat, true));
binder.registerCustomEditor(Date.class, "name.of.input", new CustomDateEditor(dateTimeFormat, true));
于 2014-01-31T09:36:50.513 回答
4

灵感来自 Skipy

public class LenientDateParser extends PropertyEditorSupport {

private static final List<String> formats = new ArrayList<String>();

private String outputFormat;

static{
    formats.add("dd-MM-yyyy HH:ss");
    formats.add("dd/MM/yyyy HH:ss");
    formats.add("dd-MM-yyyy");
    formats.add("dd/MM/yyyy");
    formats.add("dd MMM yyyy");
    formats.add("MMM-yyyy HH:ss");
    formats.add("MMM-yyyy");
    formats.add("MMM yyyy");
}

public LenientDateParser(String outputFormat){
    this.outputFormat = outputFormat;
}

@Override
public void setAsText(String text) throws IllegalArgumentException {
    if(StringUtils.isEmpty(text))
        return;
    DateTime dt = null;
    for(String format : formats){

        try{

            dt = DateTime.parse(text, DateTimeFormat.forPattern(format));

            break;

        }catch(Exception e){
            if(log.isDebugEnabled())
                log.debug(e,e);
        }
    }
    if(dt != null)
        setValue(dt.toDate());
}

@Override
public String getAsText() {
    Date date = (Date) getValue();

    if(date == null)
        return "";

    DateTimeFormatter f = DateTimeFormat.forPattern(outputFormat);

    return f.print(date.getTime());

}
}
于 2012-10-09T20:56:01.150 回答
3

这个怎么样。以上可能很快就会失控。

       public class MostLenientDateParser {
           private final List<String> supportedFormats;

           public MostLenientDateParser(List<String> supportedFormats) {
               this.supportedFormats = supportedFormats;
           }

           public Date parse(String dateValue) {
               for(String candidateFormat: supportedFormats) {
                   Date date = lenientParse(dateValue, candidateFormat);
                   if (date != null) {
                       return date;
                   }
               }
               throw new RuntimeException("tried so many formats, non matched");
           }

           private Date lenientParse(String dateCandidate, String dateFormat) {
               try {
                   return new SimpleDateFormat(dateFormat).parse(dateCandidate);
               } catch (Exception e) {
                   return null;
               }
           }
       }

这也可以通过 Spring 转换器通过 CustomDateEditor 实现来引用,以进行表单数据绑定。

于 2012-07-04T08:51:14.140 回答
3

对于其他有相同问题的人,如果您使用的是 spring 3,您可以在模型领域使用很棒的 @DateTimeFormat(pattern="dd-MM-yyyy")。

只需确保使用您的 org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter 注册一个 conversionService

您可以在同一个 bean 中拥有任意数量的 @DateTimeFormat。

于 2013-01-27T17:03:21.283 回答
1

如果一次您只收到一种日期格式,那么您可以简单地创建一个DateFormat基于格式的实例

例如

根据输入决定格式

DateFormat df = null;
if(recievedDate.indexOf("//")!=-1){
    df = new SimpleDateFormat("dd/MM/yyyy")
}else{
    df = new SimpleDateFormat("yyyyMMddhhmmss")
}
于 2012-07-04T08:09:24.247 回答
1

在处理多个语言环境时使用宽松的日期格式化程序并不是一个好主意。dd/MM/YYYY 和 MM/dd/YYYY 都可以正确解析像 10/11/2013 这样的日期

于 2014-01-17T04:12:13.557 回答