J'essaie de formater un instantané en une chaîne en utilisant la nouvelle java 8 time-api et un modèle:
Instant instant = ...;
String out = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss").format(instant);
En utilisant le code ci-dessus, j'obtiens une exception qui se plaint d'un champ non pris en charge:
java.time.temporal.UnsupportedTemporalTypeException: Unsupported field: YearOfEra
at java.time.Instant.getLong(Instant.java:608)
at java.time.format.DateTimePrintContext.getValue(DateTimePrintContext.java:298)
...