gpt4 book ai didi

java - 以不同的方式格式化年份 bc/ac

转载 作者:行者123 更新时间:2023-12-01 16:10:59 28 4
gpt4 key购买 nike

我想显示例如ac年份为1999年12月31日,BC年份为2000年12月31日(-)。我花了一些时间研究 joda api,例如像这样:

new DateTimeFormatterBuilder().appendYear(4, 10).appendLiteral("-").appendMonthOfYear(2).appendLiteral("-").appendDayOfMonth(2).toFormatter();

但我找不到有关此特定愿望的任何详细信息。

最佳答案

对于 AD 案例:

new DateTimeFormatterBuilder()  .appendDayOfMonth(2).appendLiteral("-")  .appendMonthOfYear(2).appendLiteral("-")  .appendYear(4, 10).toFormatter();

对于 BC 案例:

new DateTimeFormatterBuilder()  .appendDayOfMonth(2).appendLiteral("-")  .appendMonthOfYear(2).appendLiteral("-(-)")  .appendYear(4, 10).toFormatter();

然后在格式化之前写一个if语句。

如果您想要单个格式化程序来执行此操作,您可以实现 DateTimePrinter,然后将其附加到 DateTimeFormatterBuilder

关于java - 以不同的方式格式化年份 bc/ac,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1251417/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com