具有父级且没有分隔符的DateTimeFormatter模式不起作用

具有父级且没有分隔符的DateTimeFormatter模式不起作用,第1张

具有父级且没有分隔符的DateTimeFormatter模式不起作用 中有一个错误
DateTimePrinterParser

我逐步调试了整个过程,显然您不能将数字用作文字。如果从头到尾调试所有方法,则类似的测试代码也可以证明这一点

DateTimeFormatterBuilder.parse()

显然,如果

Value(YearOfEra,4,19,EXCEEDS_PAD)
解析不是*
数字,则解析器将消耗
00
它们停在的位置,因为解析器正在寻找数字到数字的长度。该嵌入的是错误的。


*
4``19``DateTimeFormatter``DateTimeParseContext

如果您像使用非数字字符文字一样使用

xx
它,那么数字文字则不会。

这两个均失败:
final SimpleDateFormat sdf = new SimpleDateFormat("yyyyMM'00'");System.out.println(sdf.parse("20150100"));

线程“主”中的异常java.text.ParseException:无法解析的日期:java.text.DateFormat.parse(DateFormat.java:366)处的“
20150100”

final DateTimeFormatter dateTimeFormatter = DateTimeFormatter.ofPattern("yyyyMM'00'");System.out.println(dateTimeFormatter.parse("20150100", YearMonth::from));

线程“主”中的异常java.time.format.DateTimeParseException:无法在java.time.format.DateTimeFormatter的java.time.format.DateTimeFormatter.parseResolved0(DateTimeFormatter.java:1949)的索引0处解析文本“
20150100” .parse(DateTimeFormatter.java:1851)

这些都成功:
final SimpleDateFormat sdf = new SimpleDateFormat("yyyyMM'xx'");System.out.println(sdf.parse("201501xx"));

美国东部时间2015年1月1日星期四00:00:00

final DateTimeFormatter dateTimeFormatter = DateTimeFormatter.ofPattern("yyyyMM'xx'");System.out.println(dateTimeFormatter.parse("201501xx", YearMonth::from));

2015-01



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5498660.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-12
下一篇 2022-12-12

发表评论

登录后才能评论

评论列表(0条)

保存