我正在使用 ThreeTen 并尝试格式化 Instant。拆分它会更容易,但我很好奇,这应该工作吗?从我读过的所有内容中, Instant 应该是可解析的,并且具有模式的所有组件:
@Test
public void testInstants() {
Instant instant = Instant.now();
String dbDatePattern = "YYYY-MM-dd HH:mm:ss.SSS";
try {
DateTimeFormatter formatter = DateTimeFormatter.ofPattern(dbDatePattern);
String dbDate = formatter.format(instant);
} catch (Exception ex) {
int dosomething = 1;
}
}
错误:org.threeten.bp.temporal.UnsupportedTemporalTypeException:不支持的字段:DayOfWeek
dd 是月份中的某一天,而不是 DayofWeek。可能被扔了一条红鲱鱼,但这似乎很奇怪。