Als «datetime-format» getaggte Fragen

Das Datum / Uhrzeit-Format ist eine Umwandlung eines Zeitstempels von einem Industriestandardformat wie UTC oder ISO in ein Format, das den Standards eines bestimmten Gebietsschemas oder einer bestimmten Zielgruppe entspricht

227
Sofort zu String formatieren

Ich versuche, einen Instant zu einem String mit der neuen Java 8-Zeit-API und einem Muster zu formatieren: Instant instant = ...; String out = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss").format(instant); Mit dem obigen Code erhalte ich eine Ausnahme, die ein nicht unterstütztes Feld...