乔达时间 解析时格式无效



Joda-Time抱怨我的输入格式不正确,但我使用相同的格式选项:

'd-M-y'

在输入和 Joda-Time 格式化程序中。

DateTimeFormatter formatter = DateTimeFormat.forPattern("d-M-y");
DateTime dtFrom = formatter.parseDateTime(dateFrom);

日期是从 jquery 日期选择器字段设置中获取的,如下所示:

$( "#from" ).datepicker({
                dateFormat: 'd-M-y',
                defaultDate: null,
                changeMonth: true,
                minDate: 0,
                numberOfMonths: 1,
                onClose: function( selectedDate ) {
                    $( "#to" ).datepicker( "option", "minDate", selectedDate );
                }
            });

控制台正在输出它,你也可以在那里看到输入,我相信这是正确的

WARNING: StandardWrapperValve[SearchServlet]: PWC1406: Servlet.service() for servlet SearchServlet threw exception
java.lang.IllegalArgumentException: Invalid format: "26-Jan-13" is malformed at "Jan-13"

SimpleDateFormat类类似,单个M用于解析数字月份值。您可以使用MMM来分析基于文本的月份:

DateTimeFormat.forPattern("d-MMM-y");

从日期时间格式:

月份:3 或更多,使用文本,否则使用数字。

相关内容

  • 没有找到相关文章

最新更新