- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我无法使用 LocalDate 解析方法解析此示例日期字符串 - “312015”代表“2015 年 1 月 3 日”。 有人可以帮忙吗?
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.time.LocalDate;
import java.time.format.DateTimeFormatter;
import java.util.Locale;
public class TestDOB {
public static void main(String[] args) throws ParseException {
// TODO Auto-generated method stub
String dateOfBirth = "312015";
SimpleDateFormat sdf = new SimpleDateFormat("dMyyyy");
System.out.println(sdf.parse(dateOfBirth));
// The above outputs Sat Jan 03 00:00:00 CST 2015
DateTimeFormatter dateFormatter = DateTimeFormatter.ofPattern("dMyyyy").withLocale(Locale.getDefault());
LocalDate dateTime = LocalDate.parse(dateOfBirth, dateFormatter);
// The above parsing statement with LocalDate parse method runs into below error -
}
}
Error on console-
Exception in thread "main" java.time.format.DateTimeParseException: Text '312015' could not be parsed at index 6
at java.time.format.DateTimeFormatter.parseResolved0(Unknown Source)
at java.time.format.DateTimeFormatter.parse(Unknown Source)
at java.time.LocalDate.parse(Unknown Source)
at TestDOB.main(TestDOB.java:30)
最佳答案
我很惊讶地发现这是可能的(这对我来说没有多大意义)。
DateTimeFormatter dateFormatter = new DateTimeFormatterBuilder()
.appendValue(ChronoField.DAY_OF_MONTH, 1)
.appendValue(ChronoField.MONTH_OF_YEAR, 1)
.appendValue(ChronoField.YEAR, 4)
.toFormatter();
String dateOfBirth = "312015";
LocalDate dateTime = LocalDate.parse(dateOfBirth, dateFormatter);
System.out.println(dateTime);
此代码段的输出是:
2015-01-03
不过,它有一些我认为非常严重的限制:它只能解析 1 月到 9 月(不是 10 月到 12 月)中每月 1-9 天(而不是 10-31)内的日期,因为它坚持每月的日期和月份各只有 1 位数字。
您可以通过在第一次调用 appendValue() 时省略第二个参数
.类似的技巧对于本月不起作用,因此一年的最后一个季度是遥不可及的。1
来摆脱某月某日的限制
Why enforcing single d and single M doesn't work here? Am I missing something here?
对于DateTimeFormatter
,数字字段的一个模式字母被视为“尽可能多的数字”(而不是预期的“1 位数字”)。它没有很好的记录。文档中有这句话的提示:
If the count of letters is one, then the value is output using the minimum number of digits and without padding.
所发生的情况是,解析会处理一个月中的某一天尽可能多的数字(内部限制为 19)。在本例中是整个字符串。现在它无法解析任何月份。这是错误消息的原因:
Text '312015' could not be parsed at index 6
索引 6 是字符串的结尾。
关于java - DateTimeFormatter 无法解析日期字符串,但 SimpleDateFormat 可以,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59619669/
我有以下字符串表示我需要解析的日期范围: 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
我是一名优秀的程序员,十分优秀!