- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
如果我使用像 d/M/yy
这样的模式来创建 Java 8 DateTimeFormatter(例如使用 DateTimeFormatter.ofPattern(pattern);
(我将只使用它用于解析,而不是格式化),它将所有两个字母的年份解释为 20xx,例如解析像 13/5/99
这样的字符串被解释为 2099-05-13
,在我的例子中这是错误的(它应该是在 1999 年)。
在我的应用程序中,我试图从 OCR 文档中解析日期,例如仍然来自 90 年代,因此将日期解释为当前日期之前 80 年和当前日期之后 20 年内的旧 SimpleDateFormat 行为非常适合我。但出于各种原因,我仍然希望将整个日期解析逻辑切换到新的 Java 8 DateTimeFormatters。
查看 Java 源代码,我发现这都是相对于常量 ReducedPrinterParser.BASE_DATE
进行解释的,但是我看不到在从模式构建我自己的格式化程序时更改使用的值的方法.这是不可能的,还是我错过了指定解析两个字母年份的行为的可能性?
最佳答案
您可以创建自定义格式化程序,例如 d/M/yy
模式:
new DateTimeFormatterBuilder()
.appendPattern("d/M/")
.appendValueReduced(ChronoField.YEAR_OF_ERA, 2, 2, LocalDate.now().minusYears(80))
示例用法:
public static void main(String[] args) throws Exception {
DateTimeFormatter fmt = new DateTimeFormatterBuilder()
.appendPattern("d/M/")
.appendValueReduced(ChronoField.YEAR_OF_ERA, 2, 2, LocalDate.now().minusYears(80))
.toFormatter();
parse("13/5/99", fmt);
parse("13/5/36", fmt);
parse("13/5/35", fmt);
parse("13/5/34", fmt);
parse("13/5/33", fmt);
}
private static void parse(String date, DateTimeFormatter fmt) {
System.out.println(date + " = " + LocalDate.parse(date, fmt));
}
打印:
13/5/99 = 1999-05-13
13/5/36 = 1936-05-13
13/5/35 = 1935-05-13
13/5/34 = 2034-05-13
13/5/33 = 2033-05-13
关于java - 如何使用 Java 8 DateTimeFormatter 更改解析两个字母年份的基准日期?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32505490/
我有以下字符串表示我需要解析的日期范围: 2018-10-20:2019-10-20 它由 2 个由 分隔的 ISO 日期字符串组成: 通过将重复的日期范围与其他文本混合在一起,字符串可能会变得更加复
我在使用新的 Java Date-API 时遇到问题,尤其是 java.time.DateTimeFormatter。 我正在寻找一种将 TimeZone-Offset 添加到给定时间的方法。 例如
在 Java 8 DateTime API 中,有两种格式化日期的方法,乍一看似乎做同样的事情: DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm").for
我使用 ZonedDateTime.now(ZoneOffset.of("+2:00")).minusDays(5) 创建了一个日期。现在我想将其格式化为 yyyy-MM-dd。 在 Java 8+
以下代码: Locale locale = new java.util.Locale("en", "AU"); DateTimeFormatter fmt = DateTimeFormatter.of
这个问题在这里已经有了答案: Error: Text '1/31/2020' could not be parsed at index 0 while trying to parse string d
我正在将我的应用程序从 Joda-Time 迁移到 Java 8 java.time . 我遇到的一件事是使用 DateTimeFormatter 中的模式打印基于周的年份. 注意:我看过这个问题:
这个问题已经有答案了: Why does Java's java.time.format.DateTimeFormatter#format(LocalDateTime) add a year? (2
我使用 DateTimeFormatter 来格式化日期。这是可行的,但是当我尝试将此格式化日期转换回日期时,我遇到了异常。 代码: DateTimeFormatter weekOfYear = Da
我正在尝试解析月份从 1 到 12(而不是从 01 到 12)的日期。 我正在尝试这个: System.out.println(DateTimeFormatter.ofPattern("[[M
我正在尝试使用 DateTimeFormatter API 在 TextView 中显示特定时间,但每当我运行我的应用程序时我的设备设置为阿拉伯语或孟加拉语,不知何故时间似乎总是显示西方数字。这是故意
这个问题已经有答案了: How to get start and end range from list of timestamps? (2 个回答) Converting ISO 8601-comp
我正在改造一些旧的 SimpleDateFormat 代码以使用新的 Java 8 DateTimeFormatter。 SimpleDateFormat 以及旧代码接受日期后面包含内容的字符串,例如
有没有办法拥有这样的 DateTimeFormatter DateTimeFormatter.ofPattern("HH:mm") 它应该转换为 LocalDateTime 并且将缺少的内容归零? 实
是否有与 DateTimeFormatter 的 .appendFraction 方法等效的模式?这就是我想要的,但不必包含 .appendFraction() 和周围的 .可选方法。 Date
这个问题已经有答案了: Why does Java's java.time.format.DateTimeFormatter#format(LocalDateTime) add a year? (2
我正在尝试使用 DateTimeFormatter 格式化当前日期,我几乎得到了我需要的东西,但我的问题似乎是一周中的几天是从星期日而不是星期一开始枚举的。因此,例如,如果我在星期二运行下面的代码 i
LocalDateTime API 可以通过在格式化程序中使用键“z”来添加时区名称。添加此 key 时出现异常,但不明白为什么。我正在寻找类似此示例“11:59:22 PM GMT”而不是“**..
我遇到了一个问题,我绝对无法解决这个问题。我对 Java(或任何语言,就此而言)没有经验,如果这是一个愚蠢的问题,请原谅。 据我所知,java.time.format.DateTimeFormatte
This question already has answers here: Why does Java's java.time.format.DateTimeFormatter#format(Lo
我是一名优秀的程序员,十分优秀!