转载

java – jodatime在解析某些日期格式时的奇怪行为

我试图使用jodatime解析一个日期字符串,在yyyy部分之前使用前导”.我预计会抛出一个错误,但实际上并没有抛出错误.我得到的输出没有任何意义:

System.out.println(DateTimeFormat.forPattern("yyyyMMdd").parseDateTime("20130101"));
// 2013-01-01T00:00:00.000+05:30 (Expected) (case 1)

System.out.println(DateTimeFormat.forPattern("yyyyMMdd").parseDateTime("+20130101"));
// 20130-10-01T00:00:00.000+05:30 (??? Notice that month changed to 10 also) (case 2)

System.out.println(DateTimeFormat.forPattern("MMyyyydd").parseDateTime("01+201301"));
// 20130-01-01T00:00:00.000+05:30 (??? At least month is fine this time) (case 3)

System.out.println(DateTimeFormat.forPattern("MM-yyyy-dd").parseDateTime("01-+2013-01"));
// 2013-01-01T00:00:00.000+05:30 (I expected an error, but this parsed correctly) (case 4)

任何人都可以解释为什么会这样吗?我希望有一个例外,这意味着”标志被禁止,或者它应该将2013年解释为2013年,这在最后一个案例中似乎是这样做的.但是案例2和案例3中的20130和案例2中的月份= 10的交易是什么?

如果你想在标志上抛出异常你可以使用 DateTimeFormatterBuilder ,它更灵活.

例如.格式为yyyyMMdd

DateTimeFormatter dtf = new DateTimeFormatterBuilder()
         .appendFixedDecimal(DateTimeFieldType.year(), 4)
         .appendMonthOfYear(2)
         .appendDayOfMonth(2)
         .toFormatter();
dtf.parseDateTime("19990101");  - parsed correctly  
dtf.parseDateTime("-19990101"); - throw exception  
dtf.parseDateTime("+19990101"); - throw exception

这种模式也已经出现在标准模式中:

ISODateTimeFormat::basicDate()

编辑

但是在使用 appendFixedSignedDecimal 方法时会出现奇怪的行为:

DateTimeFormatter dtf = new DateTimeFormatterBuilder()
         .appendFixedSignedDecimal(DateTimeFieldType.year(), 4)
         .appendMonthOfYear(2)
         .appendDayOfMonth(2)
         .toFormatter();
dtf.parseDateTime("19990101");  - parsed correctly  
dtf.parseDateTime("-19990101"); - parsed correctly   (negative years)  
dtf.parseDateTime("+19990101"); - throw exception (???)

我认为这是Joda lib中的问题,因为

DateTimeFormatter dtf = new DateTimeFormatterBuilder()
         .appendFixedSignedDecimal(DateTimeFieldType.year(), 4)
         .toFormatter();

按预期工作

dtf.parseDateTime("1999");  - parsed correctly  
dtf.parseDateTime("-1999"); - parsed correctly (negative years)  
dtf.parseDateTime("+1999"); - parsed correctly

(这个案例出现在 Unit Tests 为joda图书馆)

翻译自:https://stackoverflow.com/questions/19910018/weird-behaviour-of-jodatime-in-parsing-some-date-formats

原文  https://codeday.me/bug/20190111/501444.html
正文到此结束
Loading...