-2
私は
java.time
に次の時刻文字列を解析する
OffsetDateTime.parse("00:00:00.000+02:00", DateTimeFormatter.ISO_OFFSET_TIME);
結果:この方法ではない場合
java.time.format.DateTimeParseException: Text '00:00:00.000+02:00' could not be parsed: Unable to obtain OffsetDateTime from TemporalAccessor: {OffsetSeconds=7200},ISO resolved to 00:00 of type java.time.format.Parsed
at java.time.format.DateTimeFormatter.createError(DateTimeFormatter.java:1918)
at java.time.format.DateTimeFormatter.parse(DateTimeFormatter.java:1853)
at java.time.OffsetDateTime.parse(OffsetDateTime.java:402)
は、どのように私はそれから、この時間を解析することができますか?
あなたは** date **時間を解析していますが、どこに日付がありますか? –
ヒント: 'OffsetTime'を使用してください。 –
http://stackoverflow.com/questions/2201925/converting-iso-8601-compliant-string-to-java-util-date – Setily