All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.knowm.xchange.itbit.v1.ItBitDateDeserializer Maven / Gradle / Ivy

There is a newer version: 5.2.1
Show newest version
package org.knowm.xchange.itbit.v1;

import java.io.IOException;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.TimeZone;

import com.fasterxml.jackson.core.JsonParser;
import com.fasterxml.jackson.core.JsonProcessingException;
import com.fasterxml.jackson.databind.DeserializationContext;
import com.fasterxml.jackson.databind.JsonDeserializer;
import com.fasterxml.jackson.databind.exc.InvalidFormatException;

public class ItBitDateDeserializer extends JsonDeserializer {

  private SimpleDateFormat simpleDateFormat;

  {
    // For some reason, "yyyy-MM-dd'T'HH:mm:ss.SSS'0000'X" doesn't work, and neither does it without the quotes.
    simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss.SSS");
    simpleDateFormat.setTimeZone(TimeZone.getTimeZone("UTC"));
  }

  @Override
  public Date deserialize(JsonParser jp, final DeserializationContext ctxt) throws IOException, JsonProcessingException {

    String value = jp.getValueAsString().replaceFirst("0000Z$", "");
    try {
      return simpleDateFormat.parse(value);
    } catch (ParseException e) {
      throw new InvalidFormatException("Can't parse date at offset " + e.getErrorOffset(), jp.getCurrentLocation(), value, Date.class);
      //      throw new RuntimeException("Can't parse date at offset " + e.getErrorOffset(), e);
    }
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy