我正在尝试使用新的java 8 time-api和模式将Instant格式化为String:
Instant instant = ...;
String out = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss").format(instant);
使用上面的代码我得到一个Exception,它抱怨一个不支持的字段:
java.time.temporal.UnsupportedTemporalTypeException: Unsupported field: YearOfEra
at java.time.Instant.getLong(Instant.java:608)
at java.time.format.DateTimePrintContext.getValue(DateTimePrintContext.java:298)
...
答案 0 :(得分:211)
格式化Instant
需要time-zone。没有时区,格式化程序不知道如何将即时字段转换为人类日期时间字段,因此会抛出异常。
可以使用withZone()
将时区直接添加到格式化程序中。
DateTimeFormatter formatter =
DateTimeFormatter.ofLocalizedDateTime( FormatStyle.SHORT )
.withLocale( Locale.UK )
.withZone( ZoneId.systemDefault() );
现在使用该格式化程序生成Instant的字符串表示形式。
Instant instant = Instant.now();
String output = formatter.format( instant );
转储到控制台。
System.out.println("formatter: " + formatter + " with zone: " + formatter.getZone() + " and Locale: " + formatter.getLocale() );
System.out.println("instant: " + instant );
System.out.println("output: " + output );
跑步时。
formatter: Localized(SHORT,SHORT) with zone: US/Pacific and Locale: en_GB
instant: 2015-06-02T21:34:33.616Z
output: 02/06/15 14:34
答案 1 :(得分:19)
public static void main(String[] args) {
DateTimeFormatter DATE_TIME_FORMATTER = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss")
.withZone(ZoneId.systemDefault());
System.out.println(DATE_TIME_FORMATTER.format(new Date().toInstant()));
}
答案 2 :(得分:14)
Instant
类不包含区域信息,它仅存储UNIX纪元的时间戳(以毫秒为单位),即UTC的1月1日1070。
因此,格式化程序无法打印日期,因为日期始终打印为具体时区。
您应该将时区设置为格式化程序,一切都会好的,如下所示:
Instant instant = Instant.ofEpochMilli(92554380000L);
DateTimeFormatter formatter = DateTimeFormatter.ofLocalizedDateTime(FormatStyle.SHORT).withLocale(Locale.UK).withZone(ZoneOffset.UTC);
assert formatter.format(instant).equals("07/12/72 05:33");
assert instant.toString().equals("1972-12-07T05:33:00Z");
答案 3 :(得分:10)
即时消息已经采用UTC,并且其默认日期格式为yyyy-MM-dd 。如果您对此感到满意,并且不想弄乱时区或格式,也可以toString()
:
Instant instant = Instant.now();
instant.toString()
output: 2020-02-06T18:01:55.648475Z
不需要T和Z吗?(Z表示此日期为UTC。Z表示“ Zulu”(又称“零时偏移”),又称为UTC):
instant.toString().replaceAll("[TZ]", " ")
output: 2020-02-06 18:01:55.663763
要毫秒而不是纳秒?(因此您可以将其放入sql查询中):
instant.truncatedTo(ChronoUnit.MILLIS).toString().replaceAll("[TZ]", " ")
output: 2020-02-06 18:01:55.664
等
答案 4 :(得分:8)
DateTimeFormatter.ISO_INSTANT.format(Instant.now())
这使您不必转换为UTC。但是,其他语言的时间框架可能不支持毫秒,因此您应该
DateTimeFormatter.ISO_INSTANT.format(Instant.now().truncatedTo(ChronoUnit.SECONDS))
答案 5 :(得分:2)
或者如果您仍然想使用从模式创建的格式化程序 您可以只使用LocalDateTime代替Instant:
LocalDateTime datetime = LocalDateTime.now();
DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss").format(datetime)
答案 6 :(得分:-2)
DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyy MM dd");
String text = date.toString(formatter);
LocalDate date = LocalDate.parse(text, formatter);
我相信这可能有所帮助,您可能需要使用某种localdate变体而不是即时