从Joda DateTime对象访问原始本地时间

时间:2015-02-17 18:26:56

标签: json timezone jackson deserialization jodatime

我将以下JSON字符串转换为Joda DateTime对象(使用Jackson)

"2015-08-02T11:30:00.000+01:00"

使用以下代码打印出时间

DateTimeFormatter timeFmt = DateTimeFormat.forPattern("HH:mm");
String timePart = timeFmt.print(dt);

我明白了:

10:30

哪个是正确的UTC时间。

但是我希望能够打印出原来的当地时间

11:30

如何从我的日期时间对象中获取此值(甚至是+01:00的原始偏移量)?

谢谢,

肯尼

1 个答案:

答案 0 :(得分:0)

好的,我终于找到了解决方案。它不是最优雅的,我宁愿在应用程序context.xml中注册自定义对象映射器,但却无法正常工作..

无论如何,我在反序列化期间恢复了UTC的原因,因为这是杰克逊特意提供的DateTime反序列化器的目的:

public ReadableInstant deserialize(JsonParser jp, DeserializationContext ctxt)
        throws IOException, JsonProcessingException
    {
        JsonToken t = jp.getCurrentToken();
        if(t == JsonToken.VALUE_NUMBER_INT)
            return new DateTime(jp.getLongValue(), DateTimeZone.UTC);
        if(t == JsonToken.VALUE_STRING)
        {
            String str = jp.getText().trim();
            if(str.length() == 0)
                return null;
            else
                return new DateTime(str, DateTimeZone.UTC);
        } else
        {
            throw ctxt.mappingException(getValueClass());
        }
    }

所以我创建了一个自定义的Object Mapper

public class CustomObjectMapper extends ObjectMapper {

public CustomObjectMapper() {
    SimpleModule module = new SimpleModule("DateTime", Version.unknownVersion());
    module.addDeserializer(DateTime.class, new dateDeserializer());
    super.registerModule(module);
}

public class dateDeserializer extends JsonDeserializer<DateTime> {

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

  JsonToken t = jp.getCurrentToken();
  String str = jp.getText().trim();
  if (str.length() == 0) {
    return null;
  }
  else {
    DateTimeFormatter formatter = ISODateTimeFormat.dateTime().withOffsetParsed();
    return formatter.parseDateTime(str);
  }
    }

}

}

然后使用其余模板

注册
private MappingJacksonHttpMessageConverter mappingJacksonHttpMessageConverter() {
    MappingJacksonHttpMessageConverter converter = new MappingJacksonHttpMessageConverter();
    converter.setObjectMapper(new CustomObjectMapper());
    return converter;
}

restTemplate.getMessageConverters().add(0, mappingJacksonHttpMessageConverter());

如果有人对此有任何改进或想法,就会喜欢听到它们。

谢谢,

肯尼