如何在Spring WebFlow2中检查日期格式

时间:2012-09-04 16:07:39

标签: java spring spring-mvc spring-webflow

如何在Spring WebFlow2中检查日期格式。

我试图找到一些可以与Spring Webflow一起使用的代码来检查用户输入的日期是否有效。我认为这是一个简单的检查

1 个答案:

答案 0 :(得分:2)

在客户端使用JavaScript正则表达式,在服务器端使用java.text.DateFormat

DateFormat formatter = new SimpleDateFormat("yyyy-MMM-dd");
formatter.setLenient(false);
String dateAsString = request.getParameter("date");
Date date = formatter.parse(dateAsString); // throws an exception if the String is incorrectly formatted.