Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Java 8 Offset Date Parsing

I need to parse a String in the following format 2015-01-15-05:00 to LocalDate(or smth else) in UTC. The problem is that the following code:

System.out.println(LocalDate.parse("2015-01-15-05:00", DateTimeFormatter.ISO_OFFSET_DATE));

outputs 2015-01-15 ignoring the offset. The desired output is 2015-01-16

Thanks in advance!

like image 257
StasKolodyuk Avatar asked Jan 15 '16 11:01

StasKolodyuk


2 Answers

The simplest answer is to use OffsetDateTime to represent the data, but you need to default the time:

DateTimeFormatter fmt = new DateTimeFormatterBuilder()
    .append(DateTimeFormatter.ISO_OFFSET_DATE)
    .parseDefaulting(ChronoField.HOUR_OF_DAY, 0)
    .toFormatter();
OffsetDateTime dt = OffsetDateTime.parse("2015-01-15-05:00", fmt);
LocalDate date = dt.withOffsetSameInstant(ZoneOffset.UTC).toLocalDate();

ZonedDateTime is useful if dealing with time-zones, but when you are only dealing with offsets, OffsetDateTime is simpler.

In general, application code should not hold variables of type TemporalAccessor. If you see that, there is generally a better way.

like image 188
JodaStephen Avatar answered Oct 13 '22 06:10

JodaStephen


Seems like I've found a solution. Here it is:

TemporalAccessor temporalAccessor = DateTimeFormatter.ISO_OFFSET_DATE.parse("2015-01-15-05:00");
ZonedDateTime zonedDateTime = ZonedDateTime.of(LocalDate.from(temporalAccessor), LocalTime.MAX, ZoneId.from(temporalAccessor));
System.out.println(zonedDateTime.withZoneSameInstant(ZoneOffset.UTC).toLocalDate());
like image 2
StasKolodyuk Avatar answered Oct 13 '22 04:10

StasKolodyuk